function changeVisibility(theQuestionId, visibility) {
	if (visibility == "visible") {
		document.getElementById(theQuestionId).className = "dispb";
	} else {
		document.getElementById(theQuestionId).className = "invisible";
	}
}