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 bgcolor='black'><center><img src='" + obrurl + "' onmousedown='window.close()' alt='Kliknutím na obrázek okno zavřete' title='Kliknutím na obrázek okno zavřete'></center></body></html>");
   imgpage.document.close();

   imgpage.resizeTo(obrwidth,obrheight);
//pro IE
   if(isNaN(parseInt(imgpage.outerWidth)))
	{ obrwidth=obrwidth+15;
	  obrheight=obrheight+30;
	} else //Opera, Netscape, Mozilla
	{ obrwidth=imgpage.outerWidth-imgpage.innerWidth+obrwidth+15;
	  obrheight=imgpage.outerHeight-imgpage.innerHeight+obrheight+20;
        }
   imgpage.resizeTo(obrwidth,obrheight);
   imgpage.focus();
}
