
function CheckFields() {
  var prop = 'toolbar=no, location=no, directories=no, status=no, menubar=no, resizeable=no, width=204, height=130, top=200, left=200';
  if ( document.frm.Nome.value == ""     ||
       document.frm.Telefone.value == "" ||
       document.frm.Email.value == ""    ||
       document.frm.Mensagem.value == "" ) {
     
    abre = window.open('erro_fale.htm','janela',prop);
    abre.focus();
     
    // return false;
    }
  else {
    // Todos os campos foram devidamente preenchidos
    abre = window.open('','janela',prop);
    document.frm.submit();
    document.frm.reset();
    
    abre.focus();
    // return true;
    }
  }

-->
