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_busca(theForm) {
  if (theForm.campo_busca.value=="") {
    alert("Informe um valor a ser pesquisado!");
    theForm.campo_busca.focus();
    return (false);
  }
}
function verifica_news(theForm) {
  if (theForm.nome_news.value=="") {
    alert("Informe seu nome!");
    theForm.nome_news.focus();
    return (false);
  }

  if (theForm.email_news.value=="") {
    alert("Informe seu e-mail.");
    theForm.email_news.focus();
    return (false);
  }
}
