var fDesc=new Array();
fDesc[0] = "Service - O - Matic enables you to run almost any windows application as a windows service.
Running a program as a service has several benefits. You will be able to utilize automatic start at boot-time to ensure maximum uptime of your system-critical applications (even if no user logs on), run your programs in the background without user intervention, automatic restart when a program fails and more! No need to adjust your application, Service - O - Matic will easily run your program as a service. Installing your application as a service is easy with our intuitive GUI interface. Service - O - Matic has most service features and works with the least amount of CPU power possible.";
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 = '';
}
}