<!--
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/ )
// ***********************************************
function runClock() {
theTime = window.setTimeout("runClock()", 1000);
var today = new Date();
var display = today.toLocaleString();

	if(document.all || document.getElementById)
	{ // Browser Check
		document.title = display;
	}else{
		self.status = display; // Default to status.
	}
}
runClock();
-->

