var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to automatically type characters or strings of text into specific applications/documents at regular intervals. From the automatically displayed list of open applications, the user selects the application to type into and inputs the text required (keys). The entire string of characters or a single character from the string can be automatically typed every 1, 5, 10, 60 or a user specified number of seconds. There is also the feature to type Alt, Backspace, Page Break, Caps Lock, Ctrl, Delete, Up/Down Arrow, Enter, Escape, Shift, F1 keys and many more."; 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 = ''; } }