			function showlink(divid)
			{
				window.document.all(divid).style.display = "";
			}


			function hideMe(divid)
			{
				window.document.all(divid).style.display="none";
			}

			function blankBackground(elementID)
			{
				document.getElementById(elementID).style.backgroundImage = "none";
			}

			function set_Background(elementID)
			{
				var pictureStr;
				pictureStr = ""
				document.getElementById(elementID).style.backgroundImage = pictureStr;
			}

