function confirma(texto) {
  if (confirm("Você deseja realmente excluir este(a) "+texto+"?"))
    submit();
  else
    return false;
}

function Dia() {
var data = new Date();
var hora = data.getHours();
if (hora >= 0 && hora <= 5) return "noite";
if (hora >= 6 && hora <= 12) return "dia";
if (hora >= 13 && hora <= 18) return "tarde";
if (hora >= 19 && hora <= 23) return "noite";
}

function novajanela(URL,titulo) { 
  window.open(URL,titulo,'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=780,height=600');
}

function novajanela2(URL,w,h) { 
  window.open(URL,'','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+w+',height='+h+'');
}


