// JavaScript Document

function verify() {
  if (document.cadastro.nome.value.length =="" || document.cadastro.endereco.value.length =="" || document.cadastro.complemento.value.length =="" || document.cadastro.cep.value.length ==""  || document.cadastro.cidade.value.length ==""  || document.cadastro.estado.value.length =="" || document.cadastro.email.value.length ==""  || document.cadastro.telefone.value.length =="") {
    alert('DADOS INCOMPLETOS!');
    return false;
  }
  return true;
}

 