function popImg(sPicURL,docTitle) 
{ 
	
	window.open("http://www.ae.katowice.pl/popup/img/?"+escape(sPicURL)+"&"+escape(docTitle), "", "resizable=1,HEIGHT=200,WIDTH=200");
}

function popWnd(sURL) 
{ 
	var w = screen.width  - ((screen.width / 100) * 20);
	var h = screen.height - ((screen.height / 100) * 25);
	var l = ((screen.width / 100) * 10);
	var t = ((screen.height / 100) * 10);

	
	var params = "left="+l+",top="+t+",width="+w+",height="+h+",resizable,scrollbars=yes,status=1";
	window.open(sURL, "",params);
}
