function display(id){
    //alert(id);
    if(document.getElementById(id).style.display=='none'){
        document.getElementById(id).style.display = 'block';
        document.getElementById(id + '_sipka').src = 'images/sipka_down.png';
    }
    else{
        document.getElementById(id).style.display = 'none';
        document.getElementById(id + '_sipka').src = 'images/sipka_up.png';
    }
}
function display1(id){
  document.getElementById(id).style.display = 'block';
}
function display2(id){
  document.getElementById(id).style.display = 'none';
}


function potvrzeni_ul(url, dotaz) {
  if( confirm(dotaz) ) {
    location.replace(url);
  }
}
function potvrzeni_l(url, dotaz) {
  if( confirm(dotaz) ) {
    window.location.href = url;
  }
}


function relink_rep(url) {
  location.replace(url);
}
function relink(url) {
  window.location.href = url;
}


function btnMOr(elmt) {   
  if ( elmt.style.background != '#faaa00' && elmt.style.background != 'rgb(250, 170, 0)' ) {
      elmt.style.background = '#FEDA02';
  }
}

function btnMOt(elmt) {
  if ( elmt.style.background != '#faaa00' && elmt.style.background != 'rgb(250, 170, 0)' ) {
      elmt.style.background = '#E1E1E1';
  }
}


