<!--
function Validate(theform) {
	if (theform.prize.value==""){
		alert("Please select which prize you want if you win.")
		theform.prize.focus();
		return false
	}	
	if (theform.email.value==""){
		alert("Please enter the email address of the Parent of Legal Guardian.")
		theform.email.focus();
		return false
	}else{
		if (theform.email.value.indexOf ('@',0) == -1 || 
				theform.email.value.indexOf ('.',0) == -1)      {
				alert("Please enter a valid email address.")
				theform.email.select();
				theform.email.focus();
				return false;
		}	
	}		
}
//-->