	function expand(questionId) {

		if (document.getElementById("answer"+questionId).style.display == "none")
		{
			document.getElementById("answer"+questionId).style.display = "block";
		}
		else
			document.getElementById("answer"+questionId).style.display = "none";
	}
