<!-- Validador de formulario -->
<!-- fmagrosoto@digitae.com.mx -->

<!-- Begin

function Envio(theForm)
{

  if (theForm.nombre.value == "")
  {
    alert("El campo \"Nombre\" esta vacío.");
    theForm.nombre.focus();
    return (false);
  }

  if (theForm.localidad.value == "")
  {
    alert("El campo \"Ciuad o País\" esta vacío.");
    theForm.localidad.focus();
    return (false);
  }
  
    if (theForm.telefono.value == "")
  {
    alert("El campo \"Teléfono\" esta vacío.");
    theForm.telefono.focus();
    return (false);
  }
  
    if (theForm.fax.value == "")
  {
    alert("El campo \"Fax\" esta vacío.");
    theForm.fax.focus();
    return (false);
  }
  
    if (theForm.correo.value == "")
  {
    alert("El campo \"correo\" esta vacío.");
    theForm.correo.focus();
    return (false);
  }
  
    return (true);
}

// End -->

<!-- Validador de formulario -->
<!-- fmagrosoto@digitae.com.mx -->

<!-- Begin

function buscar(theForm)
{

  if (theForm.tintas[0].checked && theForm.aditamento[0].checked)
  {
    alert("Las máquinas de 1 tinta no tienen Lanzadera.");
    theForm.tintas.focus();
    return (false);
  }
  
    if (theForm.tintas[0].checked && theForm.aditamento[1].checked)
  {
    alert("Las máquinas de 1 tinta no tienen Carrusel.");
    theForm.tintas.focus();
    return (false);
  }

  return (true);
}

// End -->