function OpenWokno(sirka,vyska,file,nazev)
{
   var posuv="no"
   if(sirka>screen.availWidth)  {posuv="yes"; sirka=screen.availWidth-50};
   if(vyska>screen.availHeight) {posuv="yes"; vyska=screen.availHeight-80};
   var leftpos=screen.availWidth/2-sirka/2;
   var toppos=screen.availHeight/2-vyska/2-10;
   Okno=window.open('','','width='+sirka+',height='+vyska+',left='+leftpos+',top='+toppos+',resizable=no,scrollbars='+posuv);
   Okno.document.writeln("<html><head>");
   Okno.document.writeln("<title>&nbsp;"+nazev+"&nbsp;</title>");
   Okno.document.writeln("<link rel=stylesheet type=text/css href=../picturestyle.css>");
   Okno.document.writeln("<link rel=stylesheet type=text/css href=../../picturestyle.css></head>");
   Okno.document.writeln("</head>");
   Okno.document.writeln("<body onClick='window.self.close()'>");
   Okno.document.writeln("<img src="+file+" border=0 title=' Click = zavøít okno. '>");
   Okno.document.writeln("</body></html>");
         }

