	function toggle(which){
		if (!document.getElementById) return false;
		var test = document.getElementById((which));
		if (test.style.display=="none")
		test.style.display="block";
		else if (test.style.display=="block")
		test.style.display="none";
		else
		test.style.display="block";
		}
