/*****************************************************************************
function OpenFramedPage(headerPage, mainPage) {
  var docRoot = "http://www.brownecon.com/";
  var newWindow;

  newWindow = window.open(docRoot, );
  //alert(newWindow.location.href);
  newWindow.onLoad = "window.frames[0].location = '" + mainPage + "';"
  //newWindow.frames[0].location = docRoot + mainPage;
}

/*****************************************************************************/
function popup(theURL, winName, width, height, center) {
  var x = 0;
  var y = 0;

  if ((parseInt(navigator.appVersion) >= 4 ) && (center)) {
    x = (screen.width - width) / 2;
    y = (screen.height - height) / 2;
  }
  features = "width=" + width + ","
           + "height=" + height + ","
           + "location=0,"
           + "menubar=0,"
           + "resizable=1,"
           + "scrollbars=1,"
           + "status=0,"
           + "titlebar=0,"
           + "toolbar=0,"
           + "hotkeys=0,"
           + "screenx=" + x + ","  // For Netscape
           + "screeny=" + y + ","  // For Netscape
           + "left=" + x + ","     // For IE
           + "top=" + y;           // For IE

  window.open(theURL, winName, features);
}

/*****************************************************************************/
