function Zoom(url,w,h){
Start = "<html><head><title>ЗАО «БашВзрывТехнологии»</title><style>body {margin:0; padding:40; background:url(/images/c/bg_ct.gif) repeat-x top #f2e9c6}</style>";
Middle = "</head><body><table border='0' width='100%' cellspacing='0' cellpadding='0' height='100%'><tr><td height='49%'></td></tr><tr><td height='1%' align='center'><img style='border:1px solid #d4ccab' src='" + url;
End = "' onClick='window.close()' alt='Кликните на изображении чтобы закрыть окно' style='cursor: hand'></td></tr><tr><td height='50%'></td></tr></table></body></html>";
WinOpt = "_blank,resizable=no,scrollbars=yes,location=no,status=yes,width=" + w + ",height=" + h + ",toolbar='0'";
ZoomWin = window.open("","ZoomWindow",WinOpt);
ZoomWin.document.write(Start + Middle + End);
}