// ATIS ZALOZKY SCRIPT
var zobrazena = "active_popis";
function zobraz(polozka){
if (document.getElementById){
document.getElementById(zobrazena).style.display = "none";
document.getElementById(polozka).style.display = "block";
zobrazena = polozka;
return false;
}
else {
if(document.stylesheets) document.stylesheets["zalozky"].disabled = true;
return true;
}
}


