function NewWnd(pic,w,h) {
	nowe=window.open('','',' width='+(w+20)+',height='+(h+50)+',top=20,left=80,status=no');
	nowe.focus();
	nowe.document.open();
	nowe.document.writeln('<html><head>');
	nowe.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
	nowe.document.writeln('<link href="okno.css" rel="stylesheet" type="text/css">');
	nowe.document.writeln('</head>');
	nowe.document.writeln('<body onBlur="self.close()">');
	nowe.document.writeln('<div id="centrum" style="width:'+w+'; height:'+h+'; text-align:center;">');
	nowe.document.writeln('<span style="font-size:9px;">'+pic+'<span><br>');
	nowe.document.writeln('<img style="cursor:hand" border="1" src="'+pic+'" height="'+h+'" width="'+w+'" alt="" onClick="window.close();"><br>kliknij w zdjêcie aby zamkn±æ okno</div>');
	nowe.document.writeln('</body></html>');
	nowe.document.close();
}