// JavaScript Document

function zobraz(pocid,konid)
{
while(pocid <= konid)
{
el=document.getElementById(pocid).style;
el.display=(el.display == 'block')?'none':'block';
pocid++;
}
}

function zmen(id)
{
    el=document.getElementById(id).style;
    el.backgroundColor=(el.backgroundColor == "white")?"orange":"white";
}

function zmen_prub(id)
{
    el=document.getElementById(id).style;
    el.backgroundColor=(el.backgroundColor == "white")?"#959595":"white";
}

