
 function changeDiv(vstup)
  {
     if(vstup=="mapa")
       {
          document.getElementById('mapa').style.backgroundColor="#f3f3f3";
          document.getElementById('foto').style.backgroundColor="#ffffff";
          document.getElementById('d_foto').style.display="none";
          document.getElementById('d_mapa').style.display="";
       }
     if(vstup=="foto")
       {
          document.getElementById('foto').style.backgroundColor="#f3f3f3";
          document.getElementById('mapa').style.backgroundColor="#ffffff";
          document.getElementById('d_foto').style.display="";
          document.getElementById('d_mapa').style.display="none";
       }
  }
