function Confirma(mensagem,endereco) {
   if (confirm("Confirma a exclusão do registro \"" + mensagem + "\"?")){
       window.location.href = endereco;
   }
}

function isEmpty(a) {
  s = a.split(" ");
  return ((s[0] == null) || (s[0].length == 0));
}