// JavaScript Document

	var theMonths=new Array();

	theMonths[0]="JANUARY";

	theMonths[1]="FEB";

	theMonths[2]="MARCH";

	theMonths[3]="APRIL";

	theMonths[4]="MAY";

	theMonths[5]="JUNE";

	theMonths[6]="JULY";

	theMonths[7]="AUGUST";

	theMonths[8]="SEP";

	theMonths[9]="OCTOBER";

	theMonths[10]="NOVEMBER";

	theMonths[11]="DECEMBER";

	var theDate=new Date();

	var snDateString=theMonths[theDate.getMonth()]+" "+theDate.getDate()+",    "+theDate.getFullYear();

	document.write("<font size=1 color=#efefef>"+ snDateString +"</font>");


