function zoomBT(file,w,h){
var p=window.open('','preview_window',"width="+(w+50)+",height="+(h+50)+",top=0,left=0,location=0,toolbar=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,fullscreen=0");
p.document.write('<BODY SCROLL=NO TEXT=black BGCOLOR=#ffffff link=black vlink=black alink=black LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0><table width=100% height=100% cellspacing=0 cellpadding=0 border=0><tr><td align=center><A href=# onclick=window.close()><img src="images/'+file+'" width="'+w+'" height="'+h+'" alt="Нажмите, чтобы закрыть окно" border=0></a></td></tr></table>');

p.document.write('<SCRIPT LANGUAGE="JavaScript1.2" TYPE="text/javascript">');
p.document.write('window.resizeTo('+w+'+50,'+h+'+50);');
p.document.write('window.focus();');
p.document.write('<'+'/SCRIPT>');

p.document.close();
if(p)p.focus();
return false;
}

