// js script to show date... set font size, style and color before
// calling this script

var theDate = new Date();
var theMonth = theDate.getMonth();
var monText = "";
var theDay = theDate.getDate();
var theYear = theDate.getYear();
theMonth = theMonth+1;
if (theYear < 2000) { theYear = theYear+1900; }
if (theMonth == 1) { monText = "January"; }
if (theMonth == 2) { monText = "February"; }
if (theMonth == 3) { monText = "March"; }
if (theMonth == 4) { monText = "April"; }
if (theMonth == 5) { monText = "May"; }
if (theMonth == 6) { monText = "June"; }
if (theMonth == 7) { monText = "July"; }
if (theMonth == 8) { monText = "August"; }
if (theMonth == 9) { monText = "September"; }
if (theMonth == 10) { monText = "October"; }
if (theMonth == 11) { monText = "November"; }
if (theMonth == 12) { monText = "December"; }
document.write( monText + "&nbsp;" );
document.write( theDay );
document.write( ", " + theYear + "&nbsp;" );
