<!--- Run Javascript To Set Form Field to "Yes" If Javascript Is On --->
<!--

// Start hiding JavaScript code from old browsers.

	function AttendeeRegistrationForm_Validator(theForm)
	{
		  if (theForm.sRegistrationOption[0].checked == false && theForm.sRegistrationOption[1].checked == false && theForm.sRegistrationOption[2].checked == false && theForm.sRegistrationOption[3].checked == false)
		  {
			alert("Please choose a valid Registration option.");
			return (false);
		  }
		  
		  if (theForm.sRegistrationOption[3].checked == true)
		  {
		  		if (theForm.SchoolAttending.value == "" || theForm.SchoolAttending.value == " ")
			  	{
			    	alert("Please enter a value for the School Attending field.");
			    	theForm.SchoolAttending.focus();
			    	return (false);
			  	}
		  }
		  
		   if (theForm.sPaymentOption[0].checked == false && theForm.sPaymentOption[1].checked == false && theForm.sPaymentOption[2].checked == false)
		  {
			alert("Please choose a valid Payment option.");
			return (false);
		  }

	return true;
}

//-->