function popup_image(url, w, h)
{
	var wWidth = w;
	var wHeight = h;
	var sb = 'no';
	var b=true;
	if (wWidth > screen.width)
	{
		wWidth = screen.width - 100;
		sb = 'yes';
		b=false;
	}
	if (wHeight > screen.height)
	{
		wHeight = screen.height - 200;
		sb = 'yes';
		b=false;
	}

	wnd=window.open("", "imgWin", 'width=' + wWidth + ',height=' + (wHeight+40) + ',resizable=no,scrollbars='+sb+',toolbar=no,menubar=no');
	wnd.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /><title>Zoomed picture</title></head><body style="margin:0; padding:0;">');
	wnd.document.write('<div align="center" style="width:100%">');

	wnd.document.write('<a href="javascript:window.close();" title="Click for close window"><img src="../utils/pic.php?url='+ url +'&height='+(wHeight)+'&maxwidth='+wWidth+ '" border="0" /></a><br />');

	wnd.document.write('<p><a href="javascript:window.close();">Close window</a></p>');
	wnd.document.write('</div>');
	wnd.document.write('</body></html>');
	wnd.document.close();
	wnd.focus();
}