function img_zoom(nazwa,x,y)
{
 if (y>screen.height) {
   x = x + 20;
   y = screen.height-100;
 }
 x = x+17;
 y = y+5;
 gnwindow=window.open("", "","toolbar=0, scroll status=0, menubar=0, scrollbars=1, resizable=1, width="+x+", height="+y);
 var tmp = gnwindow.document;
	tmp.write('<html><head><title>popup</title></head>');
	tmp.write('<body><p>Please wait. Loading.</p>');
	tmp.write('<div style="position:absolute; left:0; top:0"><a href="javascript:window.close()"><img src="'+nazwa+'" border=0></a></div>');
	tmp.write('</body></html>');
	tmp.close();
 if (gnwindow.focus) { gnwindow.focus(); }
}

function findset(slowo)
{
 document.formfind.s.value=slowo;
 document.formfind.submit();
}