function dateOutput(){
var months = new Array(13);
var days = new Array(8);
months[1] = "January";
months[2] = "February";
months[3] = "March";
months[4] = "April";
months[5] = "May";
months[6] = "June";
months[7] = "July";
months[8] = "August";
months[9] = "September";
months[10] = "October";
months[11] = "November";
months[12] = "December";
days[1] = "Monday";
days[2] = "Tuesday";
days[3] = "Wednesday";
days[4] = "Thursday";
days[5] = "Friday";
days[6] = "Saturday";
days[0] = "Sunday";
theDate = new Date()  //document.lastModified
strDate = ""
theDayName = theDate.getDay();
theDay = theDate.getDate(); 
theMonth = theDate.getMonth() + 1;
theYear = theDate.getYear();
if (theYear >= 100 && theYear <= 1999)
{
theYear = theYear + 1900
}
else
{
theYear = theYear
}
//document.write(strDate);
strDate = "<font face='verdana' color='#000000' size=1><b>&nbsp;&nbsp;";
strDate = strDate + theDay + " " + months[theMonth] + " " + theYear + "</b></font>";
document.write(strDate);
}