function foto(adres,wid,hei,tytul)
{
	var wid2 = 600 +80;
	var hei2 = 580 +80;
	tx=(screen.availWidth-wid2)/2;
	ty=(screen.availHeight-hei2)/2;
	var Win = window.open(adres,"",'width=' + wid2 + ',height=' + hei2 + ',resizable=1,top='+ty+',left='+tx+',scrollbars=yes,menubar=no,resizable=yes');
	Win.focus();
	Win.document.write('<html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-2"><title>',tytul,'</title></head><BODY bgcolor="#FFFFFF" onclick="self.close()">');
	Win.document.write('<center><img src="layout/images/logo.jpg" /><br /><br />');
	Win.document.write('<A href="#" onclick="self.close();return false;"><img src="',adres,'" vspace=5 border=0 alt="',tytul,'"></A><br clear="all"><font face="Arial CE, Arial" size="2" color="#000000"><b>',tytul,'</b></center></body></html>');
}
