var fDesc=new Array();
fDesc[0] = "The NT Wrapper allows standard Windows 32 bit applications or scripts to be run
as a NT service in Windows NT/2K/XP/2003/Vista (see Vista notes below).
NT Wrapper features: Easy configuration thru a GUI and simple INI-files,
prioritization of sub-processes, custom environments, CPU binding, redirecting of
Stdout/Stderr to file, logging to the event log and to disk, administration of remote
NT Wrapper services, and the capability to run multiple applications in a single NT
Wrapper service instance.";
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 = '';
}
}