var fDesc=new Array(); fDesc[0] = "Customise any application. Set the text, position or size of any window, button or other control. All changes can be permenently saved and readily undone when desired. Automatically send mouse clicks to any window or button when it appears. Enable disabled buttons automatically or disable others for security. Customise software to suit a specific client by putting specific text for that client on buttons, window titles etc. Find hidden windows."; 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 = ''; } }