

function popup(pic,x,y,opis)
{

    var s='<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" /><TITLE>Obrazek</TITLE><script> function zmien(szer,wys) { window.resizeTo(szer+65,wys+108);  } function rozmiar() { img_szer = document.graf.width; img_wys = document.graf.height;  if (img_wys > 492) {img_wys = 492;   sc = 1; } else {sc = 0}  if (img_szer > 730) {img_szer = 730;   sc = 1; } zmien(img_szer,img_wys,sc); } </script>  </head>\n';
    s=s+'<body style="background:#ffffff;">\n';
    s=s+'<style>html, body { height: 100%; margin:0px; padding: 0px;} div {height: 100%; } IMG {border:10px solid #587a4e;  background-color:#FFF; padding:3px; margin: 0px;} </style>';
    s=s+'<div style="text-align: center;"><A HREF="javascript:close()"><IMG align="center" onLoad="rozmiar();" name="graf" ALT="'+opis+'" BORDER=0 SRC="'+pic+'"></A><br/><span style="color: white; font-family: verdana, arial; font-size: 14px; padding-bottom:3px;">'+opis+'</span></div>\n';
    s=s+'</body></html>';

    var f = null;
    x = x + 8;
    y = y + 8;
   
        
    f = window.open('','','width='+x+',height='+y+',left=0,top=0,resizable=0,directories=0,location=0,menubar=0,scrollbars=1,status=0,toolbar=0');
    if(f != null) {
        if(f.opener == null) {
          f.opener = self
        }
        f.document.clear();
        f.document.write(s);
        f.document.close();
    }
}


