var stampdays = new Array( "Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"); 
var stampmonths = new Array( "January","February","March","April","May","June","July","August","September","October","November","December");
var thedate = new Date(); 
document.write(stampdays[ thedate.getDay()] + ", " + stampmonths[ thedate.getMonth()] + " " + thedate.getDate() + ", " +   thedate.getFullYear());