// JavaScript Document

	var theMonths=new Array();

	theMonths[0]="JANUARY";

	theMonths[1]="FEBRUARY";

	theMonths[2]="MARCH";

	theMonths[3]="APRIL";

	theMonths[4]="MAY";

	theMonths[5]="JUNE";

	theMonths[6]="JULY";

	theMonths[7]="AUGUST";

	theMonths[8]="SEPTEMBER";

	theMonths[9]="OCTOBER";

	theMonths[10]="NOVEMBER";

	theMonths[11]="DECEMBER";
	
	var days=new Array();
	
	days[0]="SUNDAY";

	days[1]="MONDAY";

	days[2]="TUESDAY";

	days[3]="WEDNESDAY";

	days[4]="THURSDAY";

	days[5]="FRIDAY";

	days[6]="SATURDAY";

	var theDate=new Date();

	var snDateString=days[theDate.getDay()]+", "+theMonths[theDate.getMonth()]+"     "+theDate.getDate()+" / "+theDate.getFullYear();

	document.write(snDateString);

