var fDesc=new Array(); fDesc[0] = "AlomWare Lights is a small app that shows the LED status of the Num Lock, Caps Lock, and Scroll Lock keys at the bottom-right corner of your PC's desktop (next to the clock). This is handy for users whose keyboard does not have LED lights to show these states, such as various laptops and/or wireless keyboards."; 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 = ''; } }