var today=new Date(); var thedate=""; var dy=today.getDay(); var theday=new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'); var month=today.getMonth(); var month_name=new Array('January','February','March','April','May','June','July','August','September','October','November','December'); thedate+=month_name[month]; thedate+=" "+today.getDate(); var test_date=today.getYear(); if (test_date < 2000) test_date=test_date+1900; thedate+=", "+test_date; { document.write(theday[dy] + "<BR>" + thedate + "<BR><BR>"); }
