function confirmDelete() {
    var check = confirm("Wirklich löschen?");
    if (check == true) {
        location.href = location + "/@@delete"
    }
}

