<!-- Begin
var submitcount=0;
function reset() {
document.BusinessUSACorp.AFirstName.value="";
document.BusinessUSACorp.BLastName.value="";
document.BusinessUSACorp.ECity.value="";
document.BusinessUSACorp.FState.value="";
document.BusinessUSACorp.HCountry.value="";
document.BusinessUSACorp.KEmail.value="";
document.BusinessUSACorp.MHearAboutUs.value="";
document.BusinessUSACorp.NComments.value="";
}

function Validator(theForm){

  if (theForm.AFirstName.value == "")
  {
    alert("Please enter a value for the \"FirstName\" field.");
    theForm.AFirstName.focus();
    return (false);
  }

  if (theForm.BLastName.value == "")
  {
    alert("Please enter a value for the \"LastName\" field.");
    theForm.BLastName.focus();
    return (false);
  }

  if (theForm.ECity.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.ECity.focus();
    return (false);
  }

  if (theForm.FState.value == "")
  {
    alert("Please enter a value for the \"State\" field.");
    theForm.FState.focus();
    return (false);
  }

  if (theForm.HCountry.selectedIndex < 0)
  {
    alert("Please select one of the \"Country\" options.");
    theForm.HCountry.focus();
    return (false);
  }

  else if (theForm.HCountry.selectedIndex == 0)
  {
    alert("The first Choice \"Country\" option is not a valid selection. Please choose your Country.");
    theForm.HCountry.focus();
    return (false);
  }

  if (theForm.KEmail.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.KEmail.focus();
    return (false);
  }                    
       else if (theForm.KEmail.value.indexOf("@",1)== -1) // there must be one "@" symbol
	{
          alert("Please enter a valid Email in the \"Email Address\" field.");
          theForm.KEmail.focus();        
	  return (false);
        }
        else if  (theForm.KEmail.value.indexOf("@",theForm.KEmail.value.indexOf("@",1)+1) != -1) // and only one "@" symbol
	{ 		
          alert("Please enter a valid Email in the \"Email Address\" field.");
    	  theForm.KEmail.focus();      
	  return (false);
        }	

	else if  (theForm.KEmail.value.indexOf(".",theForm.KEmail.value.indexOf("@",1))+3 >  theForm.KEmail.value.length) // must be at least 2 characters after the "."
	{               
          alert("Please enter a valid Email in the \"Email Address\" field.");
    	  theForm.KEmail.focus();      
	  return (false);
        }        
        else if  (theForm.KEmail.value.indexOf(".",theForm.KEmail.value.indexOf("@",1)) == -1) // and at least one "." after the "@"
	{                                  
          alert("Please enter a valid Email in the \"Email Address\" field.");
    	  theForm.KEmail.focus();       
          return (false);
        }
        
    if (theForm.MHearAboutUs.selectedIndex < 0)
  {
    alert("Please select one of the \"Hear About Us\" options.");
    theForm.MHearAboutUs.focus();
    return (false);
  }

  else if (theForm.MHearAboutUs.selectedIndex == 0)
  {
    alert("The first \"Hear About Us\" option is not a valid selection. Please choose another option.");
    theForm.MHearAboutUs.focus();
    return (false);
  }
        
  if (theForm.NComments.value == "")
  {
    alert("Please enter a value for the \"Comments\" field.");
    theForm.NComments.focus();
    return (false);
  }
else 
   {
   if (submitcount == 0)
      {
      theForm.SubmitButton.value = "Submitting Request, Please Wait...";
      submitcount++;
      return true;
      }
   else 
      {
      alert("This form has already been submitted. Thanks!");
      return false;
      }
   }
}
//-->