var fDesc=new Array(); fDesc[0] = "Auto click mouse on specified coordinates or on the current mouse point. You can click the button 'Start to capture point' to capture the fixed point you want to click at. When you get your point, press any key and the capture can be stopped, and the fixed point coordinate as 'X' & 'Y' has been recorded on the edit box."; 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 = ''; } }