var fDesc=new Array(); fDesc[0] = "AutoPilot is a program that helps you automate tasks. With AutoPilot you can run many tasks based on all kinds of triggers. You can run a task from a hotkey. You can run a task from a popup menu. You can run tasks on time-scheduled intervals or many other trigger types.

AutoPilot is more than just an event scheduler. It is very useful even if you don't have any scheduled events. You can put all of your repetitive tasks into AutoPilot and launch them from a hotkey combination or from a popup menu."; 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 = ''; } }