month = new Array(13);
month[1] = "January";
month[2] = "February";
month[3] = "March";
month[4] = "April";
month[5] = "May";
month[6] = "June";
month[7] = "July";
month[8] = "August";
month[9] = "September";
month[10] = "October";
month[11] = "November";
month[12] = "December";

today = new Date()
thismonth = today.getMonth() + 1;
thisdate = today.getDate();
thisyear = today.getFullYear();

document.write('<FONT FACE="ARIAL" SIZE="-1" COLOR="#fdf8d7"><B>'+month[thismonth]+' '+thisdate+', '+thisyear+'&nbsp;</B></FONT>')