	var elePrevious = "";

	function TR_OnMouseOver(srcEle) {
		if (srcEle.style.backgroundColor != "highlight")
			srcEle.style.backgroundColor = "whitesmoke";
	}

	function TR_OnMouseOut(srcEle) {
		if (srcEle.style.backgroundColor == "whitesmoke")
			srcEle.style.backgroundColor = "";
	}
	
		function TR_OnMouseClick(URL) {
		window.location.href = (URL);
	}
	 