<!--
//
// Window opening methods
//

// Under construction
function underConstruction() {
  alert("This feature is under construction.");
}

// Open a centered window
function openCenteredWindow(aURL, aName, aWidth, aHeight, aFeatures) {
  if (document.all) {
    var xMax = screen.width;
    var yMax = screen.height;
  } else if (document.layers) {
    var xMax = window.outerWidth;
    var yMax = window.outerHeight;
  } else {
    var xMax = 640;
    var yMax = 480;
  }
  var xPos = (xMax - aWidth) / 2;
  var yPos = (yMax - aHeight) / 2;
  var features = "width=" + aWidth + "," +
                 "height=" + aHeight + "," +
                 "left=" + xPos + "," +
                 "screenX=" + xPos + "," +
                 "top=" + yPos + "," +
                 "screenY=" + yPos + "," +
                 aFeatures;
  var win = window.open(aURL,aName,features);
  win.focus();
}
function controlWindow(aURL) {
  openCenteredWindow(aURL,"control",740,500,"toolbar=yes,statusbar=yes,menubar=yes,scrollbars=yes,location=yes,directory=yes,resizable=yes,hotkeys=yes");
}
function helpWindow(aURL) {
  openCenteredWindow(aURL,"help",740,500,"toolbar=no,statusbar=no,menubar=no,scrollbars=yes,location=no,directory=no,resizable=no,hotkeys=no");
}
function reportWindow(aURL) {
  openCenteredWindow(aURL,"report",740,500,"toolbar=yes,statusbar=yes,menubar=yes,scrollbars=yes,location=yes,directory=yes,resizable=yes,hotkeys=yes");
}
function outsideWindow(aURL) {
  openCenteredWindow(aURL,"outside",740,500,"toolbar=yes,statusbar=yes,menubar=yes,scrollbars=yes,location=yes,directory=yes,resizable=yes,hotkeys=yes");
}
//-->