//used on help.jsp and helpContent.jsp

//show / hide help answers
function toggleAnswer (box) {
	if (document.getElementById(box).className == "help-answer-hidden") {
		document.getElementById(box).className = "help-answer-shown" ;
		}
	else {
		document.getElementById(box).className = "help-answer-hidden";
		}
}

//show a particular answer



