function ChangeIn(Dst,Src)
{
  Dst.src = "./images/btn_" + Src + "s.gif";
}

function ChangeOut(Dst,Src)
{
  Dst.src = "./images/btn_" + Src + "n.gif";
}

function OpenMap(Image, W, H)
{
  if (self.aPopupWindow != null)
  {
    self.aPopupWindow.close();
    self.aPopupWindow = null;
  }
  aPopUp = window.open('','Map','menubar=no,toobar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width='+W+',height='+H);
  ndoc = aPopUp.document;
  ndoc.write ('<html><head><title>Просмотр</title></head><body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" OnBlur="javascript:close();"><img src="' + Image + '" width=' + W + ' height=' + H + '></body></html>');
  ndoc.close();
  self.aPopupWindow = aPopUp;
}