var font  = "arial";
var fsize = "1";
var now   = new Date();
var month = "";
var year  = "";
var date  = now.getDate();
if (now.getMonth() == 0) month = "Jan"
if (now.getMonth() == 1) month = "Feb"
if (now.getMonth() == 2) month = "March"
if (now.getMonth() == 3) month = "April"
if (now.getMonth() == 4) month = "May"
if (now.getMonth() == 5) month = "June"
if (now.getMonth() == 6) month = "July"
if (now.getMonth() == 7) month = "Aug"
if (now.getMonth() == 8) month = "Sept"
if (now.getMonth() == 9) month = "Oct"
if (now.getMonth() == 10) month = "Nov"
if (now.getMonth() == 11) month = "Dec"
// if (now.getYear() < 100) year = "19" + now.getYear()
// if (now.getYear() >= 100) var year = "20" + now.getYear() - 18100
year = now.getYear();
document.write('<font size="' + fsize + '" face="' + font + '">' + month + " " + date + ", 2010")