function otevriOkno(url, jmeno, w, h) {  
  popupWin = window.open(url, jmeno, 'resizable=no,status=no,top=20,left=20,menubar=0,scrollbars=no,width=460,height=555');
}

function otevriOkno2(url, jmeno, w, h) {  
  popupWin = window.open(url, jmeno, 'resizable=no,status=no,top=20,left=20,menubar=0,scrollbars=no,width='+ w +',height='+ h +'');
}
/*
function nastavOkno() {
    imgx = document.img.width;
    imgy = document.img.height;
    if(document.img.width > 984)  { imgx = 1024; } else { imgx += 40; }
    if(document.img.height > 723) { imgy = 768; }  else { imgy += 55; }
   // window.resizeTo(imgx, imgy)
   window.resizeTo(450, 450)
}*/


