function show_image( img_src, width, height )
{
	win = window.open( '', '', 'status=yes, width=' + width + ', height=' + height + ', scrollbars=no' );
	
	var site = (
	"<html>\n" +
	"<head>\n" +
	"<title>Podgl¹d</title>\n" +
	"<meta http-equiv='imagetoolbar' content='no' />\n" +
	"</head>\n" +
	"<body style='margin: 0px; background-color: black;'>\n" +
	"<a href='javascript:window.close();' title='Kliknij aby zamkn¹æ.'><img src='" + img_src + "' border='0'></a>\n" +
	"</body>\n" +
	"</html>" );
  
	win.document.write( site );
	win.document.close();
}
