function createWindow(imgSRC, x, y) {
	if (Win == null)
		var Win = window.open("","displayWindow",'width=' + x + ',height=' + y + ',resizable=0,scrollbars=no,menubar=no' );
	Win.document.close();
	Win.document.writeln("<html>");
	Win.document.writeln("<head>");
	Win.document.writeln('<title>IRMAR Marek Kusmierski ::: Zapraszamy');
	Win.document.writeln('</title>');
	Win.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-2">');
	Win.document.writeln('<link rel="StyleSheet" href="parkietstyl.css" type="text/css">');
	Win.document.writeln('</head>');
	Win.document.writeln('<body style="margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;" cellspacing="0" cellpadding="0">');
	Win.document.writeln('<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0">');
	Win.document.writeln('<tr valign="center"><td align="center">');
	Win.document.writeln('<img style="cursor: hand;" src="');
	Win.document.writeln(imgSRC);
	Win.document.writeln('" border="1" onClick="javascript:window.close()" alt="Zamknij obrazek" />');
	Win.document.writeln('</td></tr></table></body>');
	Win.document.writeln('</html>');
	Win.focus();
}

