function CurTime() {
	tCtrl = document.all["time"];
	today   = new Date();
	hours   = today.getHours();
	minutes = today.getMinutes();
	seconds = today.getSeconds();
	timeVal = "- " + hours;
	timeVal += ((minutes < 10) ? ":0" : ":") + minutes;
	timeVal += ((seconds < 10) ? ":0" : ":") + seconds;
	tCtrl.innerText = timeVal;
	window.setTimeout("CurTime();",1000);
}


