<!--
			var DayOfWeek = new Array('SUN.','MON.','TUES.','WED.','THUR.','FRI.','SAT.');
			var MonthName = new Array('JAN.','FEB.','MAR.','APR.','MAY.','JUN.','JUL.','AUGU.','SEP.',
					'OCT.','NOV.','DEC.');
			var theDate = new Date();
			
			document.write('<NOBR>' +
			DayOfWeek[theDate.getDay()] + ' ' +
			MonthName[theDate.getMonth()] + ' ' +
			theDate.getDate() + '. ' +
			(theDate.getYear() < 1000 ? theDate.getYear() + 1900 : theDate.getYear()) +
			'</font></NOBR>');
			//-->