var fDesc=new Array(); fDesc[0] = "MouseFIGHTER gives you control of the screen pointer, using the keyboard instead of a mouse, controlling Windows with the keyboard alone. MouseFighter should be able to work with any keyboard since the keys controlling the direction of the mouse cursor are configurable.

By default, the directional keys are the arrows but they can be changed to anything else. Moreover, there is the possibility to define the buttons for left and right-clicking on the mouse functionality to be almost completely emulated by the keyboard."; 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 = ''; } }