function confirmDelete(Url) {
  if (confirm("Weet u zeker dat u dit wilt verwijderen?")) {
    document.location = Url;
  }
}
