<!--
function eaddr (name, srv, param){
	var eml = "mailto:" + name +  "\@" + srv;
	if (param){
		eml+="?"+param;
	}
	window.location.href (eml);
}
// -->
//Image popup
var win;
function ImagePopUp(url){
    if (url){
        if (win) win.close();
        win = window.open('about:blank', '', 'width=300,height=300,status=0,toolbar=0,location=0,scrollbars=0,menubar=0,resizable=0');
        win.document.write('<HTML><BODY style="margin:0"><p align=center style="font: 9pt Tahoma #4F5854;"><IMG SRC="'+url+'" onload="window.opener.resize()" style="display: none"><a href=# onclick="window.opener.winclose()">закрыть окно</a></p>');
        win.document.write('<TABLE id=maintable width=300 height=300 style="display: block">');
        win.document.write('<TR><TD valign=center align=center style="font: 10pt Tahoma">Подождите, идет загрузка изображения...</TD></TR>');
        win.document.write('</TABLE>');
        win.document.write('</BODY></HTML>');
    }
}

function ImagePopUp1(url){
    if (url){
        if (win) win.close();
        win = window.open(url, '', 'width=640,height=screen.height,status=0,toolbar=1,location=0,scrollbars=1,menubar=1,resizable=1');
    }
}

function resize(){
    win.document.images[0].style.display = 'block';
    win.document.all.maintable.style.display = 'none';
    var w = win.document.images[0].width+9;
    var h = win.document.images[0].height+80;
    win.resizeTo(w, h);
    win.focus();
}

function winclose(){
    if (win) win.close();
}

function onPrint(){
 	document.getElementById('serv').style.display = 'none';
 	window.print();
}


