
<!--
function toggleAnswer(questionNumber) 
{
 	// Make sure we're not in IE4
	if ( !(navigator.appName=="Microsoft Internet Explorer" 
	       && navigator.appVersion.indexOf('MSIE 4')>0) ) 
	{
		questionDiv = document.getElementById('question'+questionNumber);
		answerDiv = document.getElementById('answer'+questionNumber);
	
	
		if (answerDiv.style.display == "block") 
		{
			questionDiv.style.fontWeight = "normal"
			answerDiv.style.display = "none"
		}
		else 
		{
			questionDiv.style.fontWeight = "bold"
			answerDiv.style.display = "block"
		}
	}
}
function pickAnswer(questionNumber)
{
 	// Make sure we're not in IE4
	if ( !(navigator.appName=="Microsoft Internet Explorer" 
	       && navigator.appVersion.indexOf('MSIE 4')>0) ) 
	{
		questionDiv = document.getElementById('question'+questionNumber);
		answerDiv = document.getElementById('answer'+questionNumber);
	    answerHref = '#question' + questionNumber;
		questionDiv.style.fontWeight = "bold"
		answerDiv.style.display = "block"
		location.href=answerHref;
	}
}
//-->

