<!--
var now = new Date();
var textmonth;
var month = now.getMonth();
var date = now.getDate();
var year = now.getYear();
if (month==0) textmonth="January";
if (month==1) textmonth="February";
if (month==2) textmonth="March";
if (month==3) textmonth="April";
if (month==4) textmonth="May";
if (month==5) textmonth="June";
if (month==6) textmonth="July";
if (month==7) textmonth="August";
if (month==8) textmonth="September";
if (month==9) textmonth="October";
if (month==10) textmonth="November";
if (month==11) textmonth="December";
if (year>=100 && year<112) year += 1900;
textmonth += " " + date + ", " + year;
document.write (textmonth);
//-->