<!--
function trim(str) {
	return str.replace(/^\s*/,'').replace(/\s*$/,'');
}



function zoom(src, w, h) {
    h += 0;
    w += 0;
    var l = (screen.width - w) / 2;
    var t = (screen.height - h) / 2;
    var z = window.open('about:blank', z, 'toolbar=no,width='+w+',height='+h+',left='+l+',top='+t);
    var html = '<title>Увеличение</title><body style="margin:0;" marginwidth=0 marginheight=0><table width=100% height=100% cellpadding=0 cellspacing=0><tr><td align=center valing=center><img src="'+src+'" alt="Закрыть" onclick=window.close() style="cursor:pointer"></td></tr></table>';
    z.document.write(html);
    z.document.close();
}



// -->