var fDesc=new Array(); fDesc[0] = "Mouse Click is an application to automate mouse click (left button, right button, single, or double click) at defined locations on the screen using a keyboard shortcut. Mouse Click will move the mouse to the defined location and will click/double click one time when the defined keyboard shortcut is pressed one time.
The type of mouse click to be performed can be selected easily in a combo box provided on the main screen of the utility."; 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 = ''; } }