function foto1(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=yes,menubar=no,resizable=yes');
                    Win.focus();
						  Win.dosument.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');	
                    Win.document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl"><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-2"><title>',tytul,'</title></head><BODY style="background-color:#E6E6E6;" onclick="self.close()">');
                    Win.document.write('<div style="padding:5px; margin:0px;">');
                    Win.document.write('<A href="#" onclick="javascript: window.close();return false;"><img src="',adres,'" width=',wid,' height=',hei,' vspace=5 border=0 alt="',tytul,'"></A><br /><b>',tytul,'</b><br/><br/><br/></div></body></html>');
                    Win.document.close();
                }
                
                 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=yes,menubar=no,resizable=no');
                    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>');
                    Win.document.write('<A href="#" onclick="javascript: window.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 style="color:7c231f;">',tytul,'</b></center></body></html>');
                    Win.document.close();
                }
