function FrontPage_Form1_Validator2(theForm)
{

  if (theForm.name.value == "")
  {
    alert("Please enter your name.");
    theForm.name.focus();
    return (false);
  }


  if (theForm.email.value == "")
  {
    alert("Please enter your Email address");
    theForm.email.focus();
    return (false);
  }
  
  
  if (theForm.Country.selectedIndex == 0 || theForm.Country.selectedIndex == 1)
  {
    alert("Please select your country of Origin ");
    theForm.Country.focus();
    return (false);
  }
  
  
  if (theForm.phone.value == "")
  {
    alert("Please enter Phone Number ");
    theForm.phone.focus();
    return (false);
  }
 
  
   if (theForm.contact.selectedIndex == 0 || theForm.contact.selectedIndex == 1)
  {
    alert("Would you like us to contacted by Phone or Email");
   		theForm.contact.focus();
    return (false);
  }
  
  
  if (theForm.SpamCheck.value == "")
  {
    alert("Please enter the red number");
    theForm.SpamCheck.focus();
    return (false);
  }
  
  return (true);
}
