<!--

function popImage(url,windowTitle,windowName,closeOnClick,width,height,t){
	closeOnClick=true;
	if(!url)return
	function readSize(){if(t.complete)showPopup(t.width,t.height);else setTimeout(readSize,1e2)}
	function showPopup(w,h){with(window.open('',windowName||'','width='+(width||w)+',height='+(height||h)).document){open();write('<html><head><title>'+(windowTitle||'')+'</title></head><body onBlur="self.close()" style="margin:0;padding:0"><img src="'+url+'" style="display:block'+(closeOnClick?';cursor: pointer" onclick="self.close()" title="Zamknij okno"':'"')+'></body></html>');close()}}
	if(!width||!height)t=new Image(),t.src=url,readSize()
	else showPopup(width,height)
}

function pokaz_obrazek(url, szer, wys, sc) {
	closeOnClick=true;
	if (sc=="yes") szer+=18;
	function showPopup1(w,h){
		with(window.open('','Relax','scrollbars='+sc+',width='+(szer||w)+',height='+(wys||h)).document){
			open();
			write('<html><head><title>Relax</title></head><body onBlur="self.close()" style="margin:0;padding:0"><img src="'+url+'" style="display:block'+(closeOnClick?';cursor: pointer" onclick="self.close()" title="Zamknij okno"':'"')+'></body></html>');
			close()
		}
	}
	showPopup1();
}

function popup(px, py, purl)
{
window.open(purl,"_blank","width="+px+",height="+py+",scrollbars=no,status=no,toolbar=no,menubar=no,location=no");
}
//-->