var fDesc=new Array();
fDesc[0] = "Control Center lets you control which applications your computer executes when it starts up. Startup Control Center assembles startup information from multiple locations and presents them in a easy to understand graphical interface.
Find and remove any installed spyware, keylogger or other invisible monitoring applications. Startup Control Center allows you to add, edit, disable, move or delete startup entries. You can also change the loading order of the startup entries.
Features:
- Browse startup entries in an elegant tree view.
- Add startup entries.
- Edit startup entries.
- Disable or enable startup entries.
- Delete startup entries.
- Move entries between startup folders, with drag & drop.
- Run startup entries.
- Change the load order of startup entries.
- Get detailed information about individual startup entries.";
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 = '';
}
}