var now, theDate, day, textDay, month, textMonth, year
now = new Date();
theDate = now.getDate();
day = now.getDay();
if (day==0) { textDay="Sunday"; }
if (day==1) { textDay="Monday"; }
if (day==2) { textDay="Tuesday"; }
if (day==3) { textDay="Wednesday"; }
if (day==4) { textDay="Thursday"; }
if (day==5) { textDay="Friday"; }
if (day==6) { textDay="Saturday"; }
month = now.getMonth();
if (month==0) { textMonth="January"; }
if (month==1) { textMonth="February"; }
if (month==2) { textMonth="March"; }
if (month==3) { textMonth="April"; }
if (month==4) { textMonth="May"; }
if (month==5) { textMonth="June"; }
if (month==6) { textMonth="July"; }
if (month==7) { textMonth="August"; }
if (month==8) { textMonth="September"; }
if (month==9) { textMonth="October"; }
if (month==10) { textMonth="November"; }
if (month==11) { textMonth="December"; }
year = now.getFullYear();
document.write(""+textDay+" "+theDate+" "+textMonth+" "+year);
