function openZoom(img,t,w,h)
{
	height = h>400? h:(h + (t!=''? 70:0));
	width = w + 0;
	newWin = open('', '_blank', 'resizable=yes,left=50,top=50,width='+width+',height='+height+',scrollbars=no,status=no,toolbar=no,menubar=no');
	newWin.document.open();
	newWin.document.write('<html><head><title>Компания &laquo;Бриллион&raquo; '+(t? '&mdash; '+t:'')+'</title><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"><style>body {margin:0;padding:0;font-family:Verdana,Tahoma,Arial,sans-serif} td, div {font-size:12px}</style></head>'+"\r\n");
	newWin.document.write('<body><img src="'+img+'" width="'+w+'" height="'+h+'" alt="'+t+'" border="0">');
	if (t!='')
	{
		newWin.document.write('<div style="padding:20px">'+t+'</div>');
	}
	newWin.document.write('</body></html>');
	newWin.document.close();
}