function ToggleImg(imgName,imgObjName) {
    if (document.images) {
        document.images[imgName].src = eval(imgObjName + ".src");
    }
}

function ConfirmDel(table, column, id) {

    var odpoved = confirm("Are you sure you want delete this record?");

    if (odpoved == true) {
        window.location = "../myadmin/exec/delete.php?table=" + table + "&col=" + column + "&id=" + id;
    }
}