<!--
function openMenu(punkt){

        ttt = document.getElementById(punkt).style.display;
        if (ttt=='none'){
        document.getElementById(punkt).style.display = 'block';
        } else {
        document.getElementById(punkt).style.display = 'none';
        }
}

function popwin(w,h,path,titl) { // Просмотр картики в новом окне; w, h - ширина, высота окна; path - путь картинки, [titl] - название окна
	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;
	}
	if (!titl) titl='ЗАО &laquo;Сервис-Реестр&raquo;';
	var feat = 'width=' + w + ',height=' + h + ',top=' + wtop + ',left=' + wleft + ',status=no,location=no,menubar=no,scrollbars=yes,resizable=yes';
	var popup = window.open('','popup_mreestr',feat);
	var htmltext = '<html><head><title>'+titl+'</title><link rel=stylesheet href=/styles.css type=text/css></head><body bgcolor=EEEEEE leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle"><a href="javascript:self.close()"><img border=0 alt="закрыть окно" src=' + path + '></a></td></tr></table></body></html>';
	popup.document.open();
	popup.document.write(htmltext);
	popup.document.close();
}
//-->

