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( theDay + "&nbsp;" );
document.write(theMonth  );
document.write( theYear + "&nbsp;" );
