var pw = 0;

function otworzObrazek(nazwa, podpis)
{
	t = screen.height/2 - 200; l = screen.width/2 -250;

	if (podpis==undefined || podpis == '') {
		podpis = 'ED';
		podpis_pod = '';
		hplus = 55;
		wplus = 55;
	} else {
		hplus = 100;
		wplus = 55;
		podpis_pod = '<div style="text-align:center;" class="tekst"><p>'+podpis+'</p></div>';
	}
	
	if(!document.all) hplus+=30;

    try {
    	if (pw!=0) pw.close();	
    } catch (ex) {
    }
	
    pw = 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 = pw.document;
    d.write('<html><head><title>'+podpis+'</title><link rel="stylesheet" type="text/css" href="/img/style.css" /><sc'+'ript type="text/javascript">'
    	   +'function adjust() {i=document.getElementById(\'mim\'); if (i.height>screen.height-80) {h=screen.height-80} else {h=i.height+'+hplus+'}; '
    	   +'if (i.width>screen.width-80) {w=screen.width-80} else {w=i.width+'+wplus+'}'
    	   +'resizeTo(w,h); moveTo(screen.width / 2 - w/2,screen.height/2 - h/2) }</scr'+'ipt></head>'
    	   +'<body onload="adjust()" style="margin:10px;text-align:center;cursor:pointer;">'
    	   +'<img id="mim" src="'+nazwa+'" border="0" onclick="window.close()" />'+podpis_pod+'</body></html>');
    d.close();
    pw.focus();

}

