var fDesc=new Array(); fDesc[0] = "Auto Mouse Click is a simple program that lets you automate a series of mouse clicks at specified X-Y points on the screen. You can add any number of click actions to its list and run them in sequence. Each action can have an X-Y point, action type (left-click, right-click, middle-click, mouse move, mouse dragging), delay (milliseconds), and whether or not to move the cursor back."; 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 = ''; } }