

// Back page Drop-down menu ////////////////////////////////




		 function ToggleMenu(id){
				 dropDown = document.getElementById(id);
				 dropDown.style.display == "block"?
				 dropDown.style.display = "none":
				 dropDown.style.display = "block";
		 }
		 
		 
		 


		function go(){
				box = document.forms[0].quickSelect;
				destination = box.options[box.selectedIndex].value;
				if (destination) location.href = destination;
		}
				