﻿function delAdresse(arg1) {
    if (confirm("Wollen Sie die Adresse wirklich löschen?.")) {
        this.location.href = "adressen.aspx?type=del&id=" + arg1;
    }
}

function delAdressePop(arg1) {
    if (confirm("Wollen Sie die Adresse wirklich löschen?.")) {
        this.location.href = "pop_adressbuch.aspx?type=del&id=" + arg1;
    }
}


function askforDelete(arg1, arg2) {
    if (confirm("Wollen Sie" + arg2 + "wirklich löschen?.")) {
        this.location.href = arg1;
    }
}
