		function setBg()
		{
			document.body.style.backgroundColor=document.location.search.substr(1)
			document.body.style.fontSize="10pt";
		}

		function rollMenuOn(myID)
		{
			var oField = document.getElementById(myID);
				oField.style.textDecoration="underline"; 
				oField.style.cursor="hand";
				oField.style.fontWeight="bold";
//				oField.style.backgroundColor=boxColor;
				oField.style.backgroundColor="#cc0033";
				oField.style.color="yellow"
		}
		function rollMenuOff(myID)
		{
			var oField = document.getElementById(myID);
				oField.style.textDecoration="none"; 
				oField.style.cursor="normal";
				oField.style.fontWeight="normal";
//				oField.style.backgroundColor="white";
				oField.style.backgroundColor="#880033";
				oField.style.color="gold";
		}
