function p(i,t){
 // n = "img/medium/" + i + ".jpg";
 t=t?t:"";
 n = i;
 pop = window.open("","big","toolbar=0,menubar=0,scrollbars=0,resizable=0,height=530,width=640,left=200,top=250,dependent=1")
 txt = '<html><head><title>' + t + '<\/title>'
 txt += '<style type="text/css">body{margin:0;padding:0}<\/style>';
 txt += '<\/head><body style="text-align:center"><img src="' + n + '" width="640" height="481" alt="" onload="document.focus;" />';
 txt += '<br><a href="' + i.replace(/medium/gi,"big") + '" target="_new">powiększ<\/a> :: <a href="" onclick="self.close()">zamknij<\/a><\/body><\/html>';
 pop.document.writeln(txt);
 pop.document.close();
}


