<!--
function theForm_Validator(theForm)
{

  if (theForm.nombre.value == "")
  {
    alert("Favor entrar su Nombre.");
    theForm.nombre.focus();
    return (false);
  }

  if (theForm.nombre.value.length < 2)
  {
    alert("Favor entrar su Nombre.");
    theForm.nombre.focus();
    return (false);
  }

  if (theForm.nombre.value.length > 30)
  {
    alert("Favor entrar su Nombre.");
    theForm.nombre.focus();
    return (false);
  }

  if (theForm.appep.value == "")
  {
    alert("Favor entrar su Apellido Paterno.");
    theForm.appep.focus();
    return (false);
  }

  if (theForm.appep.value.length < 2)
  {
    alert("Favor entrar su Apellido Paterno.");
    theForm.appep.focus();
    return (false);
  }

  if (theForm.appep.value.length > 30)
  {
    alert("Favor entrar su Apellido Paterno.");
    theForm.appep.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Favor entrar su eMail.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length < 10)
  {
    alert("Favor entrar su eMail.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length > 150)
  {
    alert("Favor entrar su eMail.");
    theForm.email.focus();
    return (false);
  }
  return (true);
}
//-->