// JavaScript Document
<!--
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();
if (y < 2000) y = y + 1900;
document.write(dows[dow]+", "+months[m]+"  "+d+"  "+y);
//-->
