﻿function zoom (path, w, h)
{ 
//path='/i/'+path;
scrollbars = 0;
screenW = screen.width;
screenH = screen.height;
leftPos = (screenW - w)/2;
topPos = (screenH - h)/2;
if (w > 770 || h > 650) scrollbars = 1;
var params = "width=" + (w > 770 ? 770 : w) + ", height=" + (h > 650 ? 650 : h) + ", top="+topPos+", left="+leftPos+",menubar=no,location=no,resizable=0,scrollbars=" + scrollbars;
win=open("", "New", params);
win.document.open();
win.document.write ('<html><head><title>Domusweb.ru</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0"><img src="'+path+'" style="cursor:pointer;" onClick="window.close();" title="Закрыть изображение"></body></html>');
win.document.close();
win.focus();
}