var okno=null;
function otevri(cesta,X,Y)
{
   if (okno!=null && !(okno.closed))
   {
      okno.close();
   }
   okno=window.open("","","toolbar=0,location=0,scrollbars=1,width="+X+",height="+Y+"");
   okno.document.open();
   okno.document.write('<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">');
   okno.document.write('<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1250\">');
   okno.document.write('<title>Prohlížení obrázků</title></head>');
   okno.document.write('<body text=\"white\" bgcolor=\"darkblue\" topmargin=\"10\" leftmargin=\"10\" marginwidth=\"10\" marginheight=\"10\">');
   okno.document.write('<div align=\"center\"><a href="javascript:self.close(\'\')"><img src=\"'+cesta+'\" border=0 style=\"cursor:url(hover.cur);\"></a></div>');
   okno.document.write('<div align=\"center\">K uzavření klikněte na fotku</div></body></html>');
   okno.document.close();
}
