﻿function objGet(x) {
    if (Boolean(document.getElementById)) return document.getElementById(x);
    else if (Boolean(document.all)) return eval('document.all.' + x);
    else if (Boolean(document.ids)) return eval('document.ids.' + x);
    else return null;
}
function ConStc(intParam, strText) {
    if (intParam > 0) {
        return true;
    } else {
        if (strText == "par") {
            strText = "Zboží není skladem. Opravdu jej chcete vybrat?";
        } else {
            strText = "Zboží není skladem. Opravdu jej chcete vložit do košíku?";
        }
        if (window.confirm(strText)) {
            return true;
        } else {
            return false;
        }
    }
}

