var d = new Date(); var weekday = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'); var monthname = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'); var the_day= weekday[d.getDay()]; var the_date = d.getDate(); var the_Month = monthname[d.getMonth()]; var the_Year = d.getFullYear(); var the_whole_date =  the_day + ' ' + the_Month + ' ' + the_date + ', ' + the_Year; document.write("<div align='left'>" + the_whole_date + "</div>"); 
