	<!-- Begin
	//	LOAD-TIME FUNCTION
	
	/*	Modified 9/30/05 by Ben Loh. */
	/*	Based on script from JavaScript Source/Abraham Joffe */
	/* This script and many more are available free online at
	The JavaScript Source!! http://javascript.internet.com
	Created by: Abraham Joffe :: http://www.abrahamjoffe.com.au/ */
	
	var startTime=new Date();
	var loopTime;
	
	function currentTime(){
//		var a=Math.floor((new Date()-startTime)/1000)/10;
//		if (a%1==0) a+=".0";
		a=(new Date() - startTime)/1000;
		document.getElementById("endTime").innerHTML=a;
		var loadMsg	= document.getElementById("loadMsgTime");
		if (loadMsg) {
			loadMsg.innerHTML=a;
		}
	}
	
	function stopTime() {
		if (loopTime) {
			window.clearInterval(loopTime);
		}
	}
	
	function restartTime() {
		stopTime();
		startTime = new Date();
		loopTime = window.setInterval("currentTime()",100);
	}
	// End -->
