function showPopup(url, name, width, height, desc, screenh)
{
	if (!name) {
			var name = "window"+Math.round(10000*Math.random());
		}
	if (!width) {
			width = 760;
		}
	if (!desc) {			
			desc = '<br>';
		}
	if (!height) {
			height = 600;
		}
	

	popup_window = window.open('', name, "height="+height+",width="+width+",resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no")

	popup_window.document.write("<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-2\">\n<link rel=\"stylesheet\" type=\"text/css\" href=\"koscielniak.css\">\n<title>GOSIA KOŚCIELNIAK</title>\n");

	popup_window.document.write("<SCRIPT TYPE=\"text/javascript\">\n function change_size(imgw,imgh) { var nimgw = imgw +75; var nimgh = imgh + 120; if (nimgh +50 > "+screenh+" ) { nimgh = "+screenh+" - 50; } self.resizeTo(nimgw,nimgh);}\n </SCRIPT>");


	popup_window.document.write("</head>\n<body onLoad=\"change_size(document.imgMain.width,document.imgMain.height)\" background=\"/i/bg.jpg\" bgcolor=\"#F1F1F1\">\n<div align=\"center\" style=\"margin-top:20px;\">\n<img src=\"/img.php?big=true&imgTitle="+url+"\" border=\"0\" name=\"imgMain\" alt=\"Gosia Kościelniak - GALERIA\"></div><br>\n<div align=\"center\" class=\"i\">"+desc+"</div>\n</body>\n<\html>");


	popup_window.document.close()
	popup_window.focus();
};

