// JavaScript Document

	var theMonths=new Array();

	theMonths[0]="JAN";

	theMonths[1]="FEB";

	theMonths[2]="MAR";

	theMonths[3]="APR";

	theMonths[4]="MAY";

	theMonths[5]="JUN";

	theMonths[6]="JUL";

	theMonths[7]="AUG";

	theMonths[8]="SEP";

	theMonths[9]="OCT";

	theMonths[10]="NOV";

	theMonths[11]="DEC";
	
	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);


