	function showTipsInfo(sID)
		{
			document.getElementById("div"+sID).style.display = "block";
		}
		
		function hideTipsInfo(sID)
		{
			document.getElementById("div"+sID).style.display = "none";
		}
