var now;
var stDate;
var stMonth;
now = new Date();
if ((now.getMonth()+1) == 1)
stMonth = "January"
if ((now.getMonth()+1) == 2)
stMonth = "February"
if ((now.getMonth()+1) == 3)
stMonth = "March"
if ((now.getMonth()+1) == 4)
stMonth = "April"
if ((now.getMonth()+1) == 5)
stMonth = "May"
if ((now.getMonth()+1) == 6)
stMonth = "June"
if ((now.getMonth()+1) == 7)
stMonth = "July"
if ((now.getMonth()+1) == 8)
stMonth = "August"
if ((now.getMonth()+1) == 9)
stMonth = "September"
if ((now.getMonth()+1) == 10)
stMonth = "October"
if ((now.getMonth()+1) == 11)
stMonth = "Novemeber"
if ((now.getMonth()+1) == 12)
stMonth = "December"
stDate = now.getDate() + " " + stMonth + ", " + now.getFullYear();
document.write('
');
//document.write('');
//Original code
//document.write('');