function date()
	{
    var this_month = new Array(12);
    var this_wday = new Array("SUNDAY","MONDAY","TUESDAY","WEDNESDAY","THURSDAY","FRIDAY","SATURDAY");
    this_month[0]  = "JANUARY";
    this_month[1]  = "FEBRUARY";
    this_month[2]  = "MARCH";
    this_month[3]  = "APRIL";
    this_month[4]  = "MAY";
    this_month[5]  = "JUNE";
    this_month[6]  = "JULY";
    this_month[7]  = "AUGUST";
    this_month[8]  = "SEPTEMBERER";
    this_month[9]  = "OCTOBER";
    this_month[10] = "NOVEMBER";
    this_month[11] = "DECEMBER";
    var today = new Date();
    var wday = today.getDay();
    var day   = today.getDate();
    var month = today.getMonth();
    var year  = today.getYear();
    if (year < 1900)
	{
        year += 1900;
	}
	document.write( this_wday[wday]+",&nbsp;"+this_month[month]+" "+day+",&nbsp;"+year+"&nbsp;");
 		
}

