<!--
function displayWindow(url, width, height) {
	var Win = window.open('','popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=100,screenY=100,top=100,left=100')
	Win.document.write('<html dir="LTR" lang="pl">\n');
	Win.document.write('<head>\n');
	Win.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">\n');
	Win.document.write('<title>Powiększenie zdjęcia - marzynska.com</title>\n');
	Win.document.write('<script language="javascript"><!--\n');
	Win.document.write('var i=0;\n');
	Win.document.write('function resize() {\n');
	Win.document.write('if (navigator.appName == \'Netscape\') i=40;\n');
	Win.document.write('if (document.images[0]) window.resizeTo(document.images[0].width +40, document.images[0].height+120-i);\n');
	Win.document.write('self.focus();\n');
	Win.document.write('}\n');
	Win.document.write('//--></script>\n');
	Win.document.write('</head>\n');
	Win.document.write('<body onload="resize();">\n');
	Win.document.write('<p align="center">\n');
	Win.document.write('<img src="'+url+'" border="0"><a href="javascript:window.close()"><br><font style="font-size: 9px; font-family: tahoma; color: black;"><u>Zamknij Okno</u> [x]</font></a></p></p>\n');
	Win.document.write('</body>\n');
	Win.document.write('</html>\n');
	Win.document.close();
	}
// -->