function renderDate(){
	var the_months = new Array("JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER");
	var mydate = new Date();
	var this_year = mydate.getYear();
	if (this_year < 2000) {
		if (document.all)
			this_year = "19" + this_year;
		else
			this_year += 1900;
	}
	
	var this_month = mydate.getMonth();
	var daym = mydate.getDate();
	if (daym < 10)
		daym = "0" + daym;
	var hours = mydate.getHours();
	var minutes = mydate.getMinutes();
	var dn = "AM";
	if (hours >= 12) {
		dn = "PM";
		hours = hours - 12;
	}
	if (hours == 0)
		hours = 12;
	if (minutes <= 9)
		minutes = "0" + minutes;
	document.writeln("<FONT COLOR=\"#FFFFFF\" FACE=\"Verdana,helvetica,sans serif\" size=\"2\">| ",daym," ",the_months[this_month]," ",this_year," |</FONT><BR>");
}

renderDate();