function barva1(objektid)
{
  var objekt = document.getElementById('agenda'+objektid);
  if (objekt != null) {
    objekt.style.backgroundColor='#fcfcfc';
    objekt.style.border = 'solid 1px';
  }
}

function barva2(objektid){
  var objekt = document.getElementById('agenda'+objektid);
  if (objekt != null) {
    objekt.style.backgroundColor='#f0f1fc';
    objekt.style.border = 'solid 0px';
  }
}


function skryjvsechny() 
{
  var myElement
  for (i = 0; i < 10; i++) {
    myElement = document.getElementById('popis'+i);
    if (myElement != null) {
      myElement.style.display = 'none';
    }
  }
}

function zobrazagendu(cislo)
{
  var myPopis = document.getElementById('popis'+cislo);
  if (myPopis != null) {
    if (myPopis.style.display == 'none') {
      myPopis.style.display = 'block';
    } else {
      myPopis.style.display = 'none';
    }
  }
}

