// JavaScript Document
function closeW(){

document.getElementById("infoi").style.display="none";

}

function zavrito(the) {

        d = document.getElementsByTagName('li');
                
        for(i=0;i<d.length;i++){
        if(d[i].className == 'otevreno')
        {
        d[i].className = 'zavreno';        
            }
          }
        the.className = 'otevreno';
        
        }

function openDiv(what){
document.getElementById(what).style.display="block";
//document.getElementById("search").style.display="block";

}
    
function closeDiv(what){
document.getElementById(what).style.display="none";
//document.getElementById("search").style.display="none";

}

function changeaction(sform,url) {
  sform.action = url;
  return true;
  //submit();
}
function handleOver(name) { 
    document.getElementById('top_img').src = name.src
    
  }