function confirmDeleteBackup(backupId) {
    var sure = confirm("Sind Sie sicher, dass diese Sicherung entfernt werden soll?");    
    if (!sure) {
        return;
    }
    
    location.replace('index.php?userRequest=deleteBackup&backupId=' + backupId);
}

function confirmRebuildBackup(backupId) {
    var sure = confirm("Sind Sie sicher, dass diese Sicherung wiederhergestellt werden soll?");    
    if (!sure) {
        return;
    }
    
    location.replace('index.php?userRequest=rebuildBackup&backupId=' + backupId);
}
