function test (form){

       if (form.answer[0].checked){
		text = "That is what I thought at fist, but it is an INCORRECT response.";
		}
		
		 if (form.answer[1].checked){
		text = "No, sorry.";
		}
		
		 if (form.answer[2].checked){
		text = "Correct! Weird, huh?";
		}

    alert (text);
return false;
}

