<!--
function Validator(theForm)
{
if (theForm.email.value == "")
  {
    alert("Por favor, teclee su \"E-Mail\", este dato es necesario para poder contactar con usted.");
    theForm.email.focus();
    return (false);
  }
  return (true);
}
//-->
