var imgpage=""

function okno(obrurl,obrpopis,obrwidth,obrheight){
   imgpage=open("", "imgname", "width=100,height=100,status=no,toolbar=no,menubar=no,scrollbars=no");
   imgpage.document.open(); 
   imgpage.document.write("<html><head><link rel='stylesheet' TYPE='text/css' href='okno.css'><title>" + obrpopis + "</title></head><body onmousedown='window.close()'><center><img src='" + obrurl + "' alt='Kliknut&#237;m okno zav&#345;ete' title='Kliknut&#237;m okno zav&#345;ete'><br><div class='note'>" + obrpopis + "</div></body></center></html>");
   imgpage.document.close();

   imgpage.resizeTo(obrwidth,obrheight);
//pro IE
   if(isNaN(parseInt(imgpage.outerWidth)))
	{ obrwidth=obrwidth+15;
	  obrheight=obrheight+100;
	} else //Opera, Netscape, Mozilla
	{ obrwidth=imgpage.outerWidth-imgpage.innerWidth+obrwidth+15;
	  obrheight=imgpage.outerHeight-imgpage.innerHeight+obrheight+50;
        }
   imgpage.resizeTo(obrwidth,obrheight);
   imgpage.focus();
}

