var theDate = new Date();
var theMonth = theDate.getMonth();
var theDay = theDate.getDate();
var theYear = theDate.getYear();

theMonth = theMonth+1
if ( theMonth == "1") theMonth = "January";
if ( theMonth == "2") theMonth = "February";
if ( theMonth == "3") theMonth = "March";
if ( theMonth == "4") theMonth = "April";
if ( theMonth == "5") theMonth = "May";
if ( theMonth == "6") theMonth = "June";
if ( theMonth == "7") theMonth = "July";
if ( theMonth == "8") theMonth = "August";
if ( theMonth == "9") theMonth = "september";
if ( theMonth == "10") theMonth = "October";
if ( theMonth == "11") theMonth = "November";
if ( theMonth == "12") theMonth = "December";

document.write(theMonth + "&nbsp;");
document.write( theDay + "&nbsp;" );
document.write(theYear + "&nbsp;");

