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


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+'');
}

