function OpenMapForm(theURL)
{
  var Height = this.screen.height
  WinFeatures = "";
  WinFeatures += "ScreenX=" + Math.round((screen.availWidth - 600) / 2) + ",";
  WinFeatures += "ScreenY=0,";
  WinFeatures += "left=" + Math.round((screen.availWidth - 600) / 2) + ",";
  WinFeatures += "top=0,";
  WinFeatures += "width=700,";
  WinFeatures += "height=" + (screen.availHeight) + ",";
  WinFeatures += "resizable,";
  WinFeatures += "scrollbars";
  NewWin = window.open(theURL, "MapForm", WinFeatures);
  NewWin.focus();
}

function OpenEmailForm(theURL)
{
  var Height = this.screen.height
  WinFeatures = "";
  WinFeatures += "ScreenX=" + Math.round((screen.availWidth - 700) / 2) + ",";
  WinFeatures += "ScreenY=0,";
  WinFeatures += "left=" + Math.round((screen.availWidth - 700) / 2) + ",";
  WinFeatures += "top=0,";
  WinFeatures += "width=700,";
  WinFeatures += "height=" + (screen.availHeight) + ",";
  WinFeatures += "resizable,";
  WinFeatures += "scrollbars";
  NewWin = window.open(theURL, "EmailForm", WinFeatures);
  NewWin.focus();
}
