	function testacampos() {
 with(document.form1) {
   if (Telefone.value == "") {
    alert("Campo 'teléfono' vacío.");
    Telefone.focus()
    return false;
   }
   if (Email.value == "") {
    alert("Campo 'e-mail' vacío.")
    Email.focus()
    return false;
   }
 }
}

	function testa() {
 with(document.form2) {
   if (nomei.value == "") {
    alert("Campo 'nome do titular' vazio.")
    nomei.focus()
    return false;
   }
   if (endei.value == "") {
    alert("Campo 'endereço do titular' vazio.")
    endei.focus()
    return false;
   }
   if (cidadei.value == "") {
    alert("Campo 'cidade do titular' vazio.")
    cidadei.focus()
    return false;
   }
   if (estadoi.value == "") {
    alert("Campo 'estado do titular' vazio.")
    estadoi.focus()
    return false;
   }
   if (cepi.value == "") {
    alert("Campo 'cep do titular' vazio.")
    cepi.focus()
    return false;
   }
   if (emaili.value == "") {
    alert("Campo 'email do titular' vazio.")
    emaili.focus()
    return false;
   }
   if (fonei.value == "") {
    alert("Campo 'fone do titular' vazio.")
    fonei.focus()
    return false;
   }
   if (celulari.value == "") {
    alert("Campo 'celular do titular' vazio.")
    celulari.focus()
    return false;
   }
   if (faxi.value == "") {
    alert("Campo 'fax do titular' vazio.")
    faxi.focus()
    return false;
   }
 }
}



