function obrazek(id,sirka,vyska)
{
 okno=window.open("","obrazek","left=210,top=210,width=20,height=20,toolbar=no,"+
"location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no");

 with (okno.document)
 {
  open();
  writeln('<html>\n<head>\n<title>Obrázek</title>\n</head>\n<body topmargin="0" leftmargin="0">\n');
  writeln('<img src="fotogal/velke/'+id+'" onClick="window.close();" title="  kliknutím zavřete okno  " style="cursor: hand">\n');
  writeln('</body>\n</html>');
  okno.resizeTo((sirka+11),(vyska+30));
  okno.moveTo(Math.round((x-sirka)/2),Math.round((y-vyska)/2));
  okno.focus();
  close();
 }
}

y=screen.height;
x=screen.width;
