<!--
function show(adr, ttl, w, h)
{
	var imgwnd = window.open('','','width='+w+', height='+h+'');
	imgwnd.document.write('<head><title>'+ttl+'</title><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"></head>');
	imgwnd.document.write('<body style="margin:0"><img src=' + adr + ' width=' + w + ' height=' + h + '></body>');
	imgwnd.document.close();
}
//-->
