var fDesc=new Array(); fDesc[0] = "The HotKey QL system gives the ability to keep all the keyboard shortcuts in one central place.
In addition to standard shortcuts, HotKey QL can run scripts in the forms batch, Visual Basic scripts and Java scripts. These can be controlled using key combinations or just run from the editor.
Main features:
- Gives the ability to launch applications, URL's, open folders etc. from a simple key combination
- Easy to setup and create hot key combinations
- Allows the use of left and right ALT, shift and control key combinations
- Can be used with special extended keyboards to allow mapping of special keys
- Easily runs scripts."; 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 = ''; } }