<!-- date.js - Script source for displaying date -->

today = new Date();
	month = new Array();
	var yr;

	month[0] = "January"
	month[1] = "February"
	month[2] = "March"
	month[3] = "April"
	month[4] = "May"
	month[5] = "June"
	month[6] = "July"
	month[7] = "August"
	month[8] = "September"
	month[9] = "October"
	month[10] = "November"
	month[11] = "December"
	yr = today.getYear();
	if (yr < 200) yr = yr +1900;
	document.write(	"<FONT SIZE=-2 FACE=Verdana,Arial,Helvetica COLOR=#FFFFFF>" );
	document.write( "<BR><BR>&nbsp;&nbsp;&nbsp;"+month[today.getMonth()]+"&nbsp;", today.getDate()+",&nbsp;"+ yr );
	document.write(	"</FONT>" );