document.write('<font face="Arial,Helvetica"><font size=-1><font color="#003300">')
var now = new Date();
var date = now.getDate();
var year = now.getYear();
var month = now.getMonth();
(month == 0) ? month = "January" :
(month == 1) ? month = "February" :
(month == 2) ? month = "March" :
(month == 3) ? month = "April" :
(month == 4) ? month = "May" :
(month == 5) ? month = "June" :
(month == 6) ? month = "July" :
(month == 7) ? month = "August" :
(month == 8) ? month = "September" :
(month == 9) ? month = "October" :
(month == 10)? month = "November" :
month = "December";
var timeValue = ""  +  month + " "  + date + ", " + year
document.write (timeValue);
document.write('</font></font></font>')