var fDesc=new Array(); fDesc[0] = "LaunchPad is a program allowing you to run just about any program or script as a native Windows Service.
It runs as a wrapper around your existing program, manages how and when your program will be run and ensures that your program is available 100% of the time. LaunchPad is unique in the market because it takes advantage of the multi core CPUs, large memory models, available today in Microsofts' 64 bit versions of its operating system."; 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 = ''; } }