var fDesc=new Array(); fDesc[0] = "CalcFire allows you easily launch Calculator via your keyboard's numpad keys. You can start calculator by pressing and holding down NumLock key and pressing division (/) key which is next to NumLock key. NumLock + Numpad Division (/) key combination is now "on" button of your calculator! CalcFire can also close calculator by the same key combination. CalcFire also turns on NumLock if necessary after launching calculator and turns off again after closing calculator."; 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 = ''; } }