function Okno(soubor,sirka,vyska)
{
 with (navigator)
   {
	nazev=appName;
   }

if (nazev=="Microsoft Internet Explorer")
   {
 stredx=screen.width/2-sirka/2;
 stredy=screen.height/2-vyska/2-12;
 parametry="width="+sirka+",height="+vyska+",left="+stredx+",top="+stredy+",menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no";
 obr=window.open("","okno",parametry);
 obr.window.close();
 obr=window.open("","okno",parametry);
  with (obr)
   {
   window.focus();
   document.writeln("<HTML>\n<HEAD>\n<TITLE>LIDOVÁ ARCHITEKTURA A PAMÁTKY</TITLE>");
   document.writeln("</HEAD>\n<BODY bgcolor=#CCCCCC MARGINWIDTH=0 MARGINHEIGHT=0 TOPMARGIN=0 LEFTMARGIN=0>");
   document.writeln("<A HREF='javascript:window.close()'><IMG SRC="+soubor+" BORDER=0></A>");
   document.writeln("</BODY>\n</HTML>");
   window.focus();
   }
   }
 else location=soubor;
}
