
function showImage(nazwa, tytul)
{
    t = screen.height/2 - 200; l = screen.width/2 -250;
    w = window.open('about:blank','zdjecie','top='+t+',left='+l+',width=500,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
    d = w.document;
    d.write('<html><head><script type="text/javascript">function  adjust() {i=document.getElementById(\'mim\'); x1 = i.width + 80; if(x1>screen.width) x1=screen.width-100; y1 = i.height+125; if(y1>screen.height) y1=screen.height-100; resizeTo(x1,y1); moveTo(screen.width / 2 - i.width/2,screen.height/2 - i.height/2) }</script><title>'+tytul+'</title></head><body bgcolor="#F3F3F3" onload="adjust()" style="margin:25px;text-align:center;cursor:pointer;"><img id="mim" src="'+nazwa+'" alt="'+tytul+'" border="0" onclick="window.close()" /></body></html>');
    d.close();
}


