function popup(Path, Title, Width, Height)
{
   WinFeatures = "top="+(screen.height-Height)/2+",left="+(screen.width-Width)/2+",width="+Width+",height="+Height+",Status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=yes";
   return window.open(Path, '', WinFeatures);
}

function popupimage(Path, Width, Height, Title)
{
   WinFeatures = "top="+(screen.height-Height)/2+",left="+(screen.width-Width)/2+",width="+Width+",height="+Height+",Status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no";
   w = window.open("", "window", WinFeatures);
   w.document.open();
   w.document.write('<html>');
   w.document.write('<head><title>'+Title+'</title></head>');
   w.document.write("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><img src='"+Path+"' height='"+Height+"' width='"+Width+"' alt='"+Title+"'></body>");
   w.document.write('</html>');
   w.document.close();
}
function popupmap(Path, Width, Height, Title)
{  
   h = Height+30;
   WinFeatures = "top="+(screen.height-Height)/2+",left="+(screen.width-Width)/2+",width="+Width+",height="+h+",Status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no";
   w = window.open("", "window", WinFeatures);
   w.document.open();
   w.document.write('<html>');
   w.document.write('<head><title>'+Title+'</title></head>');
   w.document.write("<body  bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><img src='"+Path+"' height='"+Height+"' width='"+Width+"' alt='"+Title+"'>");
   w.document.write("<div style='text-decoration:underline; cursor:pointer; text-align: center; margin-top: 5px;' onclick='window.print();'><img src='/images/i/printer.gif' /> печать</div></body></html>");
   w.document.close();
}
