	var secs;
	var timerID = null;
	var timerRunning = false;
	var delay = 100;
	var strTip;	
	function top_onClick() {
		window.scrollTo(0,0); 
	}
	function setCopyYear(){
		var dt = new Date();
		yr = dt.getYear();

		
		//document.getElementById("spnYear").innerText = yr;
		//if(document.all){
		//document.getElementById('spnYear').innerHTML = yr;

		document.getElementById('spnYear').firstChild.nodeValue = yr;


	

		
		
//	} else{
		//alert("df")
	//		document.getElementById('spnYear').data = yr;
				
//		}

	}
	function toolTip(){
			document.getElementById("Tip").innerText = strTip;
			strTip = "";
	}
	function InitializeTimer(tip)
	{
	// Set the length of the timer, in seconds
	secs = 1;
	StopTheClock();
	StartTheTimer();
	strTip = tip;
	}

	function StopTheClock()
	{
	if(timerRunning)
		clearTimeout(timerID);
		timerRunning = false;
	}

	function StartTheTimer()
	{
	if (secs==0)
	{
		StopTheClock();
		toolTip();
	}
	else
	{
		self.status = secs
		secs = secs - 1
		timerRunning = true
		timerID = self.setTimeout("StartTheTimer()", delay)
	}
	}
	function onload(){
	    setCopyYear();
	}
	function backOver(caller){
		caller.style.color = "#0000A0";
	}
	function backOut(caller){
		caller.style.color = "#C9ADCA";
	}
	function toTop(){
		window.scrollTo(0,0);
	}