	function showHelp(theid) {
		objA = document.getElementById("help_"+theid);
		if (!objA) objA = document.getElementById(theid);
		state = objA.style.display;
		objA.style.display = (state=="block") ? "none":"block";
	}
	    