<!--

function FlashImage(url,windowTitle,windowName,closeOnClick,width,height,t){
	closeOnClick=false;
	if(!url)return
	url = 'big/'+url;
	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+20)+',scrollbars=yes,height='+(height||h)).document){
			open();
			write('<html><head><title>'+(windowTitle||'')+'</title></head><body onBlur="self.close()" style="margin:0;padding:0;background-color:#299CAF;"><img src="'+url+'" style="display:block;margin:0 auto;'+(closeOnClick?';cursor: pointer;margin: 0 auto;" onclick="self.close()" title="Zamknij okno"':'"')+'></body></html>');
			close();
			}
		}
	if(!width||!height)t=new Image(),t.src=url,readSize()
	else showPopup(width,height)
}

//-->
