var fDesc=new Array(); fDesc[0] = "The menu provides several options:

-About - an informational and diagnostic window
- Help - opens a Web browser with this on-line help.
- Check for Updates - looks on-line for newer versions of the Flexor Manager
- Run Welcome Wizard - re-runs the welcome wizard that is normally run just once when the application is used for the very first time . However, sometimes it is necessary to re-run it as the easiest way to reconfigure the system.
- Plug-in Management - opens a window for checking the status of license keys for the various components of the system (called plug-ins). License problems, such as license expiry can be investigate, and corrected.
- Devices and Applications - opens a window for managing and configuring the Applications and Devices that are connected to the Flexor Manager"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }