//<SCRIPT>
//<!--
function openit(targurl, width, height) {

  /* 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 + ",toolbar=no,menubar=no,location=no,resizeable=no,scrollbars=no,status=no"
      
      /* 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;
    }
}   
// -->
//</SCRIPT>
