// Změna čísla - Pull Menu - přesměrování bez nutnosti potvrzení
function pullGoToCislo() {
var stranka = window.document.forms['pullmenuCislo'].elements['cislo'].options[window.document.forms['pullmenuCislo'].elements['cislo'].selectedIndex].value;
if (stranka > "")
    top.document.location.replace('?cislo=' + stranka);
return false;
}

// Změna roku - Pull Menu - přesměrování bez nutnosti potvrzení
function pullGoToRok() {
var stranka = window.document.forms['pullmenuRok'].elements['zmenarok'].options[window.document.forms['pullmenuRok'].elements['zmenarok'].selectedIndex].value;
if (stranka > "")
    top.document.location.replace('?zmenarok=' + stranka);
return false;
}

