		function openIt(iName, iWidth, iHeight, iComment) {
			if (iComment != null) {
				iHeight += 70;
			}
			openWindow = window.open("", "openWindow", " top=0, left=0, width=" + iWidth + ", height=" + iHeight);
			openWindow.document.open();
			openWindow.document.write('<html><head><title>EDMĘS :: www.meyvesabunu.com</title><link href="standard.css" rel="stylesheet" type="text/css"></head>\n');
			openWindow.document.write('<body bgcolor="#ccff66" topmargin="30px" leftmargin="40px" marginwidth="0" marginheight="0">\n');
			openWindow.document.write('<img src="' + iName + '" />\n');
			if (iComment != null) {
				openWindow.document.write('<p align="center" style="color: #FFFFFF; font-size: 12px">' + iComment + '\n');
			}
			openWindow.document.write('</body></html>');
			openWindow.document.close();
			openWindow.focus();
		}