function FrontPage_Form1_Validator(theForm)
{

  if (theForm.email.value == "")
  {
    alert("Please enter Email");
    theForm.email.focus();	
    return (false);
  }

  if (theForm.confirmemail.value == "")
  {
    alert("Please enter Confirm Email");
    theForm.confirmemail.focus();	
    return (false);
  }


   if (theForm.fname.value == "")
  {
    alert("Please enter First Name");
    theForm.fname.focus();	
    return (false);
  }

   if (theForm.lname.value == "")
  {
    alert("Please enter Last Name");
    theForm.lname.focus();	
    return (false);
  }
   if (theForm.companyname.value == "")
  {
    alert("Please enter Company Name");
    theForm.companyname.focus();	
    return (false);
  }
   if (theForm.Address1.value == "")
  {
    alert("Please enter Address");
    theForm.Address1.focus();	
    return (false);
  }
     if (theForm.city.value == "")
  {
    alert("Please enter City");
    theForm.city.focus();	
    return (false);
  }
    if (theForm.country.value == "")
  {
    alert("Please enter Country");
    theForm.country.focus();	
    return (false);
  }

 
  return (true);
}
