function polacz(url) { window.location.href=url; }

function pokaz(zdjecie,width,height)
{
 var w=screen.availWidth;
 var h=screen.availHeight;
 var left=(w-width)/2;
 var top=(h-height)/2;
 okno=window.open("", "galeria",'left='+left+',top='+top+',width='+width+',height='+height+',menubar=no,location=no,resizable=no,scrollbars=no,status=no');
 okno.document.write('<html><body style="margin:0"><img src="'+zdjecie+'" alt="" style="border-style:none;cursor:pointer" onclick="javascript:window.close()"></body></html>');
}