function ToggleImg(imgName,imgObjName) {
    if (document.images) {
        document.images[imgName].src = eval(imgObjName + ".src");
    }
}

function ConfirmDel(table, column, id) {

    var odpoved = confirm("Opravdu chceš vymazat tuto položku?");

    if (odpoved == true) {
        window.location = "../admin/exec/delete.php?table=" + table + "&col=" + column + "&id=" + id;
    }
}