dows = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
   months = new Array("January","February","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.getYear();
   document.write(months[m] + " " +d+"",", "+y);


