function winresize(){
FW=document.images["BigImage"].width;
FH=document.images["BigImage"].height;
window.resizeTo(FW+50,FH+60);
}window.focus();


	function popwin(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=500,height=380,top=' + wtop + ',left=200,status=no,location=no,menubar=no,scrollbars=yes,resizable=yes,top=20,left=210,screenY=20,screenX=210';
	var popup = window.open('','popupwin',feat);
	var htmltext = '<html><head><title>DCCSS MP</title></head>';
	htmltext += '<script type="text/javascript" src="/script.js"></script>';
	htmltext += '<body onload="winresize();" bgcolor=#FFFFFF leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0>';
	htmltext += '<table align=center cellpadding=0 border=0 cellspacing=0 width=100% height=100%><tr><td align=center valign=middle width=100% height=100%>';
	htmltext += '<a href=\"javascript:self.close()\"><img id=\"BigImage\" border=0 alt=\"close window\" src='+path+' /></a>';
	htmltext += '</td></tr></table></body></html>';
//	popup.document.open();
	popup.document.write(htmltext);
	popup.document.close();
	}

function prtw() { // Версия дял печати
	var prt_url=document.URL;
	if (/index\.sema\?/.test(prt_url)) prt_url+='&no_design=1';
	else prt_url=prt_url.replace(/http:\/\/www\.diaconia\.ru/g,'http://www.diaconia.ru/print');
	window.open(prt_url,'pw');
}	