function confirmaExclusao(aURL) {
  if(confirm('Confirma exclusão?')) {
    location.href = aURL;
  }
}
