function confirmDelete(delUrl) {
  if (confirm("Sicher Löschen?")) {
    document.location = delUrl;
  }
}
