var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to record mouse activity on a PC. Using check boxes any of the following mouse actions can be recorded: mouse movement, right click, left click and middle click. There are check boxes to auto-hide and auto-show the software window. There are buttons to start the recording, to load a previous recording from a file, to start playing the recording or to save the present recording as a file."; 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 = ''; } }