function Form1_Validator(theForm)
{
  if (theForm.choice1.value == "")
  {
    alert("Please enter a value for the \"Choice 1\" field.");
    theForm.choice1.focus();
    return (false);
  }
  if (theForm.day1.value == "")
  {
    alert("Please enter the date for the first choice.");
    theForm.day1.focus();
    return (false);
  }
  if (theForm.month1.value == "")
  {
    alert("Please enter the month of the first choice.");
    theForm.month1.focus();
    return (false);
  }
  if (theForm.year1.value == "")
  {
    alert("Please enter the year of the first choice.");
    theForm.year1.focus();
    return (false);
  }  
 	if (theForm.title1.value == "")
  {
    alert("Please enter the title for the lead passenger.");
    theForm.title1.focus();
    return (false);
  }  
	if (theForm.forename1.value == "")
  {
    alert("Please enter the first name of the lead passenger.");
    theForm.forename1.focus();
    return (false);
  }  
	if (theForm.surname1.value == "")
  {
    alert("Please enter the lastname of the lead passenger.");
    theForm.surname1.focus();
    return (false);
  }  
	if (theForm.address.value == "")
  {
    alert("Please enter the address of the lead passenger.");
    theForm.address.focus();
    return (false);
  } 
	if (theForm.city.value == "")
  {
    alert("Please enter the City you live in.");
    theForm.city.focus();
    return (false);
  }   
	if (theForm.sc.value == "")
  {
    alert("Please enter the state//county.");
    theForm.sc.focus();
    return (false);
  }  
	if (theForm.postal.value == "")
  {
    alert("Please enter the postcode or zip code.");
    theForm.postal.focus();
    return (false);
  }  
	if (theForm.country.value == "")
  {
    alert("Please enter your country.");
    theForm.country.focus();
    return (false);
  }  
	if (theForm.email.value == "")
  {
    alert("Please enter your email address.");
    theForm.email.focus();
    return (false);
  } 
	if (theForm.email2.value == "")
  {
    alert("Please confirm your email address.");
    theForm.email2.focus();
    return (false);
  } 
  if (!(theForm.email.value == theForm.email2.value))
  {
     alert("Your contact email addresses do not match.");
	 theForm.email.focus();
	 return(false);
  }
	return (true);
}
