<!-- Javascript to display date in the following format:
<!-- "Today is "Month Day, Weekday"

// get today's date
var d=new Date();

// get the current month
var month=new Array(12);

// store name of month into arrary variable
month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";

// store day of the week into array variable
var weekday=new Array(7);
weekday[0]="Sunday";
weekday[1]="Monday";
weekday[2]="Tuesday";
weekday[3]="Wednesday";
weekday[4]="Thursday";
weekday[5]="Friday";
weekday[6]="Saturday";

// display the format on page.
document.write("Today is " + month[d.getMonth()] + " " + d.getDate() + ", " + weekday[d.getDay()] );



