	function getAnswer( cur_q ){
		var cur_question = document.frmQuiz.cur_question.value;
		var question = document.getElementById('span_question');
	
		if( GetRadioValue( document.frmQuiz.rbAnswer ) == null ){
			alert("Please select the answer first.");
			return false;
		}
	
		switch( cur_q ){
			case "1":
				alert("TRUE! Even dead poison ivy plants are toxic and can spread the rash for up to 5 years. Try the next question!");
				document.frmQuiz.cur_question.value = 2;
				question.innerHTML = 'You can catch poison ivy from your pets.<br />';
				document.frmQuiz.rbAnswer[0].checked = false;
				document.frmQuiz.rbAnswer[1].checked = false;
				break;
			case "2":
				alert("TRUE! The toxin in Poison Ivy can be transferred to your skin by pet hair, gardening tools, even socks and boots. Try the next question!");
				document.frmQuiz.cur_question.value = 3;
				question.innerHTML = 'Scratching the blisters will spread the poison ivy rash.<br />';
				document.frmQuiz.rbAnswer[0].checked = false;
				document.frmQuiz.rbAnswer[1].checked = false;
				break;
			case "3":
				alert("FALSE. The oil urushiol, found in the poison ivy plant, is what causes the rash. The fluid found in blisters is just your body’s reaction to the irritation.");
				document.frmQuiz.cur_question.value = 0;
				question.innerHTML = 'Now that you know the  facts about poison ivy, protect yourself and your family with the total  solution: the CORTAID<sup>&reg;</sup> Poison Ivy Care Treatment Kit.';
				var answer = document.getElementById('span_answer');
				answer.className = 'hidden';
				break;
		}
	
	}
