<!--
var d=new Date();

var weekday=new Array(7);
weekday[0]="Sunday";
weekday[1]="Monday";
weekday[2]="Tuesday";
weekday[3]="Wednesday";
weekday[4]="Thursday";
weekday[5]="Friday";
weekday[6]="Saturday";

var themonth=new Array(12);
themonth[0]="January";
themonth[1]="February";
themonth[2]="March";
themonth[3]="April";
themonth[4]="May";
themonth[5]="June";
themonth[6]="July";
themonth[7]="August";
themonth[8]="September";
themonth[9]="October";
themonth[10]="November";
themonth[11]="December";

document.write(weekday[d.getDay()] + "  " + themonth[d.getMonth()] + "  " +  d.getDate() + "  " +  d.getYear());

//-->
