<!--
function CheckForm()
{
  if (bookingform.Name.value == "")
  {
    alert ("Please enter Your Name");
    bookingform.Name.focus();
	return false;
  }
  else if (bookingform.Address.value == "")
  {
    alert ("Please enter Your Address");
    bookingform.Address.focus();
	return false;
  }
  else if ((!bookingform.Course1.checked) &&
          (!bookingform.Course2.checked) &&  
          (!bookingform.Course3.checked) &&  
          (!bookingform.Course4.checked) &&  
          (!bookingform.Course5.checked) &&  
          (!bookingform.Course6.checked))
  {
    alert ("Please select a course");
    bookingform.Course1.focus();
	return false;
  }
  else if (!bookingform.TermsAndConditions.checked)
  {
    alert ("Please indicate that you agree to our Terms and Conditions");
    bookingform.Course1.focus();
	return false;
  }
  else
  {
    return true;
  }
}
// -->