function popupwindow( ImageURL, Width, Height)
{
	Features = "toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,directories=no,status=no,resizable=no";
	ImageName = "Podłogi Świata";
	ImageURL = 'images/' + ImageURL;
	popup = window.open( '', 'NoweOknoPodlogi1', (Features + ', width=' + (Width+6) + ', height=' + (Height+6)) +', left=' + (screen.width/2-Width/2) + ', top=' + (screen.height/2-Height/2) );
	popup.document.clear(); popup.focus();
	popup.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	popup.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pol-PL" lang="pol-PL">');
	popup.document.writeln('<head>\n<meta http-equiv="Content-Type" content="text\/html; charset=iso-8859-2" />');
	popup.document.writeln('<meta name="copyright" content="Copyright (c) 2003-2008 by Media Studio (Mariusz Ściseł)" />');
	popup.document.writeln('<title>' + ImageName + ' - www.podlogiswiata.pl</title>\n</head>');
	popup.document.writeln('<body style="margin:0; padding: 3px; background: #000; ">');
	popup.document.writeln('<a href="javascript:window.close();" title="Zamknij"><img src="' + ImageURL + '" style="border:0; display: block; margin: 0 auto;" /></a>');
	popup.document.writeln('</body>\n</html>');
	popup.focus(); popup.document.close();
}