 function zoom (path, w, h, header)
    { 
	scrollbars = 0;
	screenW = screen.width;
	screenH = screen.height;
	leftPos = (screenW - w)/2;
	topPos = (screenH - h)/2;
	if (w > 770) {w = 770;}
	if (h > 680) {h = 680;}
	var params = "width=" + w + ", height=" + 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>'+header+'</title><meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /></head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0"><img src="http://www.omire.ru'+path+'" width="'+ w +'" height="'+ h +'" tyle="cursor:pointer;" onClick="window.close();" alt="Закрыть окно" title="Закрыть окно" /></body></html>');
	win.document.close();
      win.focus();
    }

