function validaCadastro() {
  if (document.getElementById("formCadastro").cadastro_email.value == ""){     
  alert("Você deve informar o seu email!");
  document.getElementById("formCadastro").cadastro_email.focus();
  return false;
  }
  return true;
}
