function pokaz_obrazek(name, szer, wys){
okno=window.open('','Window2',"RESIZABLE=NO,HEIGHT="+wys+",WIDTH="+szer);
okno.document.close();
okno.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">');
okno.document.writeln('<html>');
okno.document.writeln('<head>');
okno.document.writeln(' <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
okno.document.writeln('<style type="text/css">');
okno.document.writeln('body {position: absolute; top: 0pt; left: 0pt;}');
okno.document.writeln('body {margin: 0pt; padding: 0pt; overflow: hidden;}');
okno.document.writeln('</style>');
okno.document.writeln('</head>');
okno.document.writeln('<body>');
var w = okno.innerWidth;
var h = okno.innerHeight;
if (h == null) {
  if (okno.document.getElementsByTagName) {
    var body=okno.document.getElementsByTagName('body')[0];
    w = body.clientWidth;
    h = body.clientHeight;
  }
};
okno.document.writeln('<img src="'+name+'" alt="" width="'+szer+'" height="'+wys+'">');
okno.document.writeln('</body>');
okno.document.writeln('</html>');
okno.document.close();
}
