<!-- Hide from old browsers

function get_radio_value()
{
	for (var i=0; i < document.form2.fish.length; i++)
	{
			if (document.form2.fish[i].checked)
			{
				var rad_val = document.form2.fish[i].value;
				document.mail1.vote.value = rad_val;
			}
	}
}
function survey() {
      
        var comments=document.form1.comments.value

		document.mail.comment.value = comments

}

function trivia() {
	for (var i=0; i < document.form1.race.length; i++)
	{
		if (document.form1.race[i].checked)
		{
			var rad_val = document.form1.race[i].value;
			document.mail.gorace.value = rad_val;

			if (rad_val != '3') {
				alert("Your answer is incorrect, please try again!");
			} else {
				alert("Your answer is correct!");
			}
      }
   }
}

// -->

