<!---
function openWindow(cil,sirka,vyska,x,y) {
  popupWin = window.open(cil, "reklama", "width="+sirka+",height="+vyska+",top="+y+",left="+x+",status=no,menubar=no");
}
function openFoto(cil,sirka,vyska,x,y) {
  popupWin = window.open("foto.php?f=" + cil, "foto", "width="+sirka+",height="+vyska+",top="+y+",left="+x+",status=no,menubar=no,scrollbars=yes,resizable=yes");
}
function openFotoDetail(cil,sirka,vyska,x,y) {
  popupWin = window.open("gfoto.php?id=" + cil, "fotogalerie", "width="+sirka+",height="+vyska+",top="+y+",left="+x+",status=no,menubar=no,scrollbars=yes,resizable=yes");
  popupWin.focus();
}
function openServer(cil) {
//  popupWin = window.open(cil, "ucstr", "status=yes,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes");
  popupWin = window.open(cil);
}
function changeimg(foto,img,vyska,sirka) {
  if (document.getElementById) {
      cnt = document.getElementById("foto");
  } else if (document.all) {
      cnt = document.all["foto"];
  }
  cnt.src=img;
  if (document.getElementById) {
      odk = document.getElementById("odkaz");
  } else if (document.all) {
      odk = document.all["odkaz"];
  }
  if(foto=="") {
    odk.href="#";
  } else {
    odk.href="javascript:openFoto('"+foto+"',"+vyska+","+sirka+",20,20);";
  } 
  
}
-->

