<!--
function Validator(theForm)
{
	theForm.v12.value = theForm.phoneac.value + "-" + theForm.phone1.value + "-" + theForm.phone2.value;
	theForm.v13.value = theForm.faxac.value + "-" + theForm.fax1.value + "-" + theForm.fax2.value;
  var text = new String(theForm.v5.value);
	
  if (text == "")
  {
    alert("Please enter a value for the \"First Name\" field.");
    theForm.v5.focus();
    return (false);
  }

  if (text.length < 3)
  {
    alert("Please enter at least 3 characters in the \"First Name\" field.");
    theForm.v5.focus();
    return (false);
  }
  
  
  var text = new String(theForm.v6.value);
  if (text == "")
  {
    alert("Please enter a value for the \"Last Name\" field.");
    theForm.v6.focus();
    return (false);
  }

  if (text.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Last Name\" field.");
    theForm.v6.focus();
    return (false);
  }  


  var text = new String(theForm.v11.value);
  if (text.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.v11.focus();
    return (false);
  }

  if (text.length < 7)
  {
    alert("Please enter at least 7 characters in the \"Email\" field.");
    theForm.v11.focus();
    return (false);
  }

  if ((text.indexOf("@") == -1) || (text.indexOf(".") == -1))
  {
    alert("Please enter a valid email address in the \"Email\" field.");
    theForm.v11.focus();
    return (false);
  } 

  return (true);
}
//-->
