
function popwin(w,h,path) { // Просмотр картики в новом окне; w, h - ширина, высота окна; path - путь картинки
	var x1 = (document.all) ? window.screenLeft : screenX;
	var x2 = (document.all) ? document.body.clientWidth : window.innerWidth;
	var y = (document.all) ? window.screenTop : screenY;
	var wleft = (x1 + (x2/2)) - (w/2);
	var wtop = 0;
	if (navigator.appName == 'Microsoft Internet Explorer') {
		wtop = y - 40;
	} 
	else {
		wtop = y + 40;
	}
	var feat = 'width=' + w + ',height=' + h + ',top=' + wtop + ',left=' + wleft + ',status=no,location=no,menubar=no,scrollbars=yes,resizable=yes,top=20,left=210,screenY=20,screenX=210';
	var popup = window.open('','svupopupwin',feat);
	var htmltext = '<html><head><title>СВУ</title><link rel=stylesheet href=/style.css type=text/css></head><body bgcolor=EEEEEE leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0><table align=center cellpadding=0 border=0 cellspacing=0 width=100% height=100%><tr><td align=center valign=middle width=100% height=100%><a href="javascript:self.close()"><img border=0 alt="закрыть окно" src=' + path + '></a><br><br><a href="javascript:self.close()">закрыть окно</a></td></tr></table></body></html>';
	popup.document.open();
	popup.document.write(htmltext);
	popup.document.close();
}

