/*
 * scripts.js
 * Sportkomparsen scripts
 *
 * $Id: styles.css 576 2008-04-14 15:56:45Z dellermann $
 *
 * Copyright (c) 2007-2008 AMC World Technologies GmbH
 * Fischerinsel 1, D-10179 Berlin, Deutschland
 * All Rights Reserved.
 *
 * This software is the confidential and proprietary information of AMC World
 * Technologies GmbH ("Confidential Information"). You shall not disclose such
 * Confidential Information and shall use it only in accordance with the terms
 * of the license agreement you entered into with AMC World Technologies GmbH.
 */


function deleteAllItems(url) {
    if (window.confirm("Wollen Sie wirklich alle Einträge löschen?")) {
        window.location.href = url;
    }
}

function deleteItem(url) {
    if (window.confirm("Wollen Sie diesen Eintrag wirklich löschen?")) {
        window.location.href = url;
    }
}
