  function ShowWin(url,x,y,name,isscrollbars) {
	cx=screen.width / 2 - (x / 2);
	cy=(screen.height/2-(y/2));

    isscrollbars=(isscrollbars=="no")?"no":"yes";
	window.open(url,name,"toolbar=no,status=no,directories=no,menubar=no,resizable=no,width="+x+",height="+y+",scrollbars="+isscrollbars+",top="+cy+",left="+cx);
}  

  function ShowImg(ImgPath, x, y)
   {
     cx=screen.width / 2 - (x / 2);
     cy=(screen.height/2-(y/2));
     if (ImgPath == '/images/map.gif')
       var w = window.open("", "map1", "toolbar=no,status=no,directories=no,menubar=no,resizable=yes,width="+x+",height="+y+",scrollbars=yes,top="+cy+",left="+cx);
     if (ImgPath == '/images/map2.gif')
       var w = window.open("", "map2", "toolbar=no,status=no,directories=no,menubar=no,resizable=yes,width="+x+",height="+y+",scrollbars=yes,top="+cy+",left="+cx);

     var d = w.document;
     d.open();
     d.write('<html><head><title>Ñõåìà ïðîåçäà</title></head><link rel="stylesheet" type="text/css" href="/css/style.css">');
     d.write('<body style="margin: 0px; padding: 0px;"><img src = "' + ImgPath + '"</body></html>');
     d.close();
   }

