function otworz_okno_html(nazwa_jpg, width, vheight, left ,top ,tytul)
{
okienko = window.open('','okno_123','width=' + width + ',height=' + vheight + ',left=' + left +',top=' + top + ',resizable=0,scrollbars=no,menubar=no');
with(okienko.document) 
{
writeln('<html>');
writeln('<head>');
writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
writeln('<title>' + tytul + '</title>');
writeln('</head>');
writeln('<body bgcolor="#C6C6C6" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0" onBlur="window.close();">')

writeln('<a href=javascript:window.close();>');
writeln('<img border=0 src=\"' + nazwa_jpg + '\" width=\"' + width + '\" height=\"' + vheight + '\">');
writeln('</body>');
writeln('</html>');
void(close());
};
};

