function Form1_Validator(theForm)
{
  if (theForm.email_registro.value == "Coloque su email...")
  {
    alert("Debe ingresar un E-Mail valido");
    theForm.email_registro.focus();
    return (false);
  }
    if (theForm.email_registro.value == "")
  {
    alert("Debe ingresar un E-Mail valido.");
    theForm.email_registro.focus();
    return (false);
  }
  if (theForm.email_registro.value.indexOf("@") == -1)
  {
    alert("Su E-Mail es invalido, por favor ingreselo nuevamente.");
    theForm.email_registro.focus();
    return (false);
  }

  if (theForm.email_registro.value.indexOf(".") == -1)
  {
    alert("Su E-Mail es invalido, por favor ingreselo nuevamente.");
    theForm.email_registro.focus();
    return (false);
  }
    return (true);
}

