<!--

function makewin (targurl, width, height, winopts) {

  /* IE 3 browsers and version 2 browsers will fail this test */

  if (navigator.userAgent.indexOf("MSIE 3.0") == -1 && navigator.appVersion.indexOf("2.0") == -1)
    {

      /* Check for existence of sidebars object. If non-existent, then create it */
      
      if (window.sidebars == null)
        {
          sidebars = new Object;
          sidebars.length = 1;
        }
      
      allopts = "width=" + width + ",height=" + height + "," + winopts;
      
      /* Create the new window and update the sidebars array object */
      var tempref = window.open(targurl, "sidebar" + sidebars.length, allopts);
      
      sidebars[sidebars.length] = tempref;
      sidebars.length++;
    }
  else
    {
      self.location.href = targurl;
    }
}

function killwins() {
  if (navigator.userAgent.indexOf("MSIE 3.0") != -1 && window.sidebars != null)
    {
      for (i = 1; i < sidebars.length; i++)
        {
          sidebars[i].close();
        }
    }
}


// -->
<!--

function makewin_update (targurl, width, height, winopts, windowName) {

  /* IE 3 browsers and version 2 browsers will fail this test */

  if (navigator.userAgent.indexOf("MSIE 3.0") == -1 && navigator.appVersion.indexOf("2.0") == -1)
    {
      
      allopts = "width=" + width + ",height=" + height + "," + winopts;
      
      /* Create the new window and update the sidebars array object */
      var tempref = window.open(targurl, windowName, allopts);
      
    }
  else
    {
      self.location.href = targurl;
    }
}

// -->

