<!--
function openImg(url,szer,wys,nazwa)
{
config='left=100,top=100,width='+szer+',height='+wys+',innerheight='+wys+',innerwidth='+szer+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
newWindow=window.open('','_blank',config);
var Html='';
Html+='<html><head>';
Html+='<meta http-equiv="Content-Type" content="text/html; charset=utf-8">';
if (nazwa!='')
{
 Html+='<title>'+nazwa+'</title>';
}
else
{
 Html+='<title>Zdjęcie</title>';
}
Html+='<script language="javascript">';
Html+='setTimeout(';
Html+='"self.close()';
Html+=';",70000)';
Html+='</';
Html+='script>';
Html+='</head>';
Html+='<body bgcolor="white" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">';
Html+='<div align="center"><a href="#" onclick="javascript:self.close();"><img src="'+url+'" border="0" alt="'+nazwa+'" /></a></div>';
Html+='</body></html>';
newWindow.document.write(Html);
newWindow.focus();
}
//-->


function popup(type,szer,wys,nazwa,link)
{
	if (type=='link')
	{
		config='left=100,top=100,width='+szer+',height='+wys+',innerheight='+wys+',innerwidth='+szer+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
		newWindow=window.open(link,'_blank',config);
	}
	else
	{
		config='left=100,top=100,width='+szer+',height='+wys+',innerheight='+wys+',innerwidth='+szer+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
		newWindow=window.open('','_blank',config);
		var Html='';
		Html+='<html><head>';
		Html+='<meta http-equiv="Content-Type" content="text/html; charset=utf-8">';
		if (nazwa!='')
		{
			Html+='<title>'+nazwa+'</title>';
		}
		else
		{
			Html+='<title>Popup</title>';
		}
		Html+='</head>';
		Html+='<body bgcolor="white" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">';
		Html+='<div align="center">';
		if (type=='swf')
		{
			Html='<object classid="clsid:D27cdb6e-ae6d-11cf-96b8-444553540000" width="'+szer+'" height="'+wys+'" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"><param name="movie" value="'+link+'" /><param name="loop" value="true" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="'+link+'" loop="true" quality="high" bgcolor="#ffffff"  width="'+szer+'" height="'+wys+'" name="bhcms" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
		}
		else
		{
			Html='<img src="'+link+'" border="0" alt="'+nazwa+'" width="'+szer+'" height="'+wys+'"/>';
		}
		Html+='</div>';
		Html+='</body></html>';
		newWindow.document.write(Html);
		newWindow.focus();
	}
}
