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('<B><FONT COLOR="white" FACE="Arial">'+month[thismonth]+' '+thisdate+', '+thisyear+'&nbsp;</FONT></B>')