<!--
function show_date() {
	var now = new Date();
	var months = new Array( "January", "Febuary", "March", "April", "May",
							"June", "July", "August", "September", "October",
							"November", "December" );

	var currentYear  = now.getFullYear();
	var currentMonth = months[ now.getMonth() ];
	var currentDay   = now.getDate();

	part="th ";
	if( currentDay == 1 || currentDay == 21 || currentDay == 31 )
		part="st ";
	if( currentDay == 2 || currentDay == 22 )
		part="nd ";
	if( currentDay == 3 || currentDay == 23 )
		part="rd ";
	document.writeln( "<center>" + currentDay + part + currentMonth + "</center>" );
	document.writeln( "<center>" + currentYear + "</center>" );
}
//-->
