var fDesc=new Array(); fDesc[0] = "NumLock ON mode, the user cannot type alphabetic characters without first turning NumLock OFF. That means to switch between typing alphabetic characters and number-crunching, the user has to manually toggle NumLock.

NumLock Commander creates a small icon in the PC system tray (bottom right of desktop) that monitors and modifies the NumLock status automatically."; 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 = ''; } }