function confirmDelete(delUrl) {
  if (confirm("Apakah anda ingin menghapus data ini")) {
    document.location = delUrl;
  }
}
