function foto(adres, wid, hei, tytul)
{
     var wid2 = wid +80;
     var hei2 = hei +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=no,menubar=no,resizable=no');
     Win.focus();
     Win.document.write('<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"><title>',tytul,'</title></head><BODY bgcolor="#FFFFFF" onclick="self.close()">');
     Win.document.write('<center>');
     Win.document.write('<A href="#" onclick="self.close();return false;"><img src="',adres,'" width=',wid,' height=',hei,' vspace=5 border=0 alt="',tytul,'"></A><br clear="all"><font face="Arial CE, Arial" size="2" color="#000000"><b>',tytul,'</b><br><br><br><br><br></center></body></html>');
     Win.document.close();
}
