<!--// Oculo Javascript - V0.3  6th Oct 2003
    //    V1.0.4 Netscape introduced - 09 May 2004
    //  Simple routines to support web site functionality.
    //  Oculo apps sense browser and load either ocscript.js or ocscriptns.js
  var ocHelpWindow;
  var ocSidebar;
  var ocSidebarMinHeight;
  var ocSidebarTop;

  // OcHelp - open a window to provide Technical help  
  function ocHelp()
  { // Action on Help click - link provides the target page, just open new window
    ocHelpWindow = window.open("","OculoHelp","channelmode=no,location=no,status=yes," + 
                              "directories=no,menubar=no,toolbar=yes,resizable=yes," +
                              "scrollbars=yes,width=500,height=600,left=30,top=30");
    ocHelpWindow.focus;
  }

  function ocLoad()
  { // Just note the initial length/height of the sidebar and set as a minimum size
    ocResize();
  }

  function ocResize()
  {	// Resizes the Oculo sidebar to be the length of the page content, or if
    //  it is less than the clients window length, the height of the window
  }
/*

*/
  function showMenu(subMenu)
  { var subMenuBox = document.getElementById(subMenu + "Menu");
    subMenuBox.style.visibility = 'visible';
  }

  function hideMenu(subMenu)
  { var subMenuBox = document.getElementById(subMenu + "Menu");
    subMenuBox.style.visibility = 'hidden';
    return;
  }
//-->