function verifica(theForm) {
  if (theForm.nome.value=="") {
    alert("Informe seu nome!");
    theForm.nome.focus();
    return (false);
  }

  if (theForm.email.value=="") {
    alert("Informe seu e-mail.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.mensagem.value=="") {
    alert("Descreva tua mensagem.");
    theForm.mensagem.focus();
    return (false);
  }
}

function verifica_login(theForm) {
  if (theForm.usuario.value=="") {
    alert("Informe seu e-mail!");
    theForm.usuario.focus();
    return (false);
  }

  if (theForm.senha.value=="") {
    alert("Informe sua senha.");
    theForm.senha.focus();
    return (false);
  }
}
function verifica_cliente(theForm) {
  if (theForm.nome.value=="") {
    alert("Informe seu nome!");
    theForm.nome.focus();
    return (false);
  }
  if (theForm.email.value=="") {
    alert("Informe seu e-mail!");
    theForm.email.focus();
    return (false);
  }  

  if (theForm.senha.value=="") {
    alert("Informe sua senha.");
    theForm.senha.focus();
    return (false);
  }
}
function Voltar() {
	history.go(-1);
}
