myvar = new Date(); 
Month = (myvar.getMonth() + 1) 
Year = (myvar.getYear()) 
if (Month == 1) {TheMonth = "January";} 
if (Month == 2) {TheMonth = "February";} 
if (Month == 3) {TheMonth = "March";} 
if (Month == 4) {TheMonth = "April";} 
if (Month == 5) {TheMonth = "May";} 
if (Month == 6) {TheMonth = "June";} 
if (Month == 7) {TheMonth = "July";} 
if (Month == 8) {TheMonth = "August";} 
if (Month == 9) {TheMonth = "September";} 
if (Month == 10) {TheMonth = "October";} 
if (Month == 11) {TheMonth = "November";} 
if (Month == 12) {TheMonth = "December";} 
document.write(" &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+TheMonth+" " +myvar.getDate()+", "+Year);
