var fDesc=new Array(); fDesc[0] = "Mousotron is a mouse and keyboard activity monitor that keeps statistics of your mileage. It's like an odometer or tripometer for your mouse cursor. It calculates just how far your mouse cursor has traveled on your screen and how many times the mouse buttons were clicked. Also the number of keystrokes on your keyboard are counted. Mousotron keeps track of the following statistics: distance traveled, left, middle and right button clicks, double clicks, mouse wheel scrolls, cursor speed, number of keystrokes, and X and Y coordinates."; 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 = ''; } }