var fDesc=new Array();
fDesc[0] = "Technicians Toolbox is an all-in-one utility that can help you diagnose a PC.
Components:
-Quick Tools (Windows Built-in Tools)
-Take A Screen Shot
-Check Disk (chkdsk) At Next Boot
-Run As System Account
-Netstat
-Network Information
-Static IPv4
-TCP & UDP Stats
-IP Subnet Calculator
-IP Address Scanner
-Manage Windows Users
-Manage Users
-Create New Windows User
-User Account Properties
-Manage Groups
-Create New Windows Group
-Group Properties
-Bulk Manage Users Tool
-Delete, Move Or Rename Locked Files At Bootup
-Svchost.exe Lookup
-Process Information
-Windows Services
-Windows Services Safe Mode
-Windows Shutdown Timer
-CPU Monitor
-Drives Monitor
-Memory Monitor
-Network Monitor";
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 = '';
}
}