var fDesc=new Array(); fDesc[0] = "ServiceInstaller is a free utility that makes it easy to install programs as Windows NT Services, including pure Java applications, without manually editing the registry.
ServiceInstaller consists of two programs: a service configuration program that provides a friendly dialog-box interface for installing or removing services and a second Win32 application that executes behind the scenes as the actual service that runs the programs of your choice."; 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 = ''; } }