function showHideHelp(helpID) {
	var helpBox = document.getElementById(helpID);
	if (helpBox.style.display == "block") {
		helpBox.style.display = "none";
		helpBox.style.visibility = "hidden";
	} else {
		helpBox.style.display = "block";
		helpBox.style.visibility = "visible";
	}
}
