// JavaScript Document
function ZmienObrazek(id,plik,typ)
{
if(typ=='on')
{
var dot=plik.indexOf('_');
document.getElementById(id).src=plik.substring(0,dot)+'.jpg';
document.getElementById(id+'h').className='lewe_menu';
}
else
{
document.getElementById(id).src=plik;
document.getElementById(id+'h').className='lewe_menu1';
}
}

function wysz(prefix) {
    var rodz = document.getElementById("ctl00_lstRodzaje");

    rodz.onclick = function() {
       var pok = document.getElementById("ctl00_trpokoje");
            
       if (this.value == "2") {
           pok.style.visibility = "hidden";
           pok.style.display = "none";
       } else {
           pok.style.visibility = "visible";
           pok.style.display = "table-row";
       }
    };
}

function kalk() {
        if (document.getElementById("c_n")) {
            kalkinit();
        } else {
            if (document.getElementById("kwota")) {
                kalkinit2();
            }
        }
}