dows = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
   months = new Array("January","Febrary","March","April","May","June","July","August","September","October","November","December");
   now = new Date();
   dow = now.getDay();
   d = now.getDate();
   m = now.getMonth();
   h = now.getTime();
   y = now.getFullYear();
   document.write(dows[dow]+" "+d+" of "+months[m]+" "+y);