var fDesc=new Array();
fDesc[1] = "to provide drivers, however it includes a set of tools that could help you troubleshooting and restore your system, version 4.5 is the lastest released and its the one you will find in all Dell computers since 2001";
fDesc[2] = "to support information. Technical data is gathered for the products supported by this tool and is used to identify the product. Product Identification is followed by display of useful support information for maintenance and troubleshooting.";
fDesc[3] = "errors that show up. The software can optimize the computer by first scanning it to find the problems and then fixing the invalid registry entries. The Advanced Registry Optimizer is also easy to use and has a user friendly interface.";
fDesc[5] = "the application, you will see a small screen asking you how much memory you want to test. The ideal value here is the total of your memory. If you are troubleshooting your computer for RAM problems; that is.";
fDesc[6] = "active TCP and UDP connections on your computer with protocol statistics. It is a set of utilities like Netstat, Ping, Ipconfig, Route, Tracert, Arp.";
fDesc[7] = "present are caused by spyware and processes that are not supposed to be running and actually are. For example, they say that if you can't connect to a wireless network outside of home, it must probably be spyware.";
fDesc[8] = "hardware components. Dr. Hardware 2008 has an icon’s menu with six options. The overview option gathers all the hardware information on the computer, shows graphs in real time of the CPU usage to monitor and analyzes the CPU usage and performance.";
fDesc[9] = "allows you to quickly look at the data when you experience problems (bad call quality for VoIP, slowdowns with applications, etc.).";
fDesc[10] = "a tool called Gmail POP Troubleshooter directly from the Google Web site. This tool will immediately repair your POP access to its server.";
fDesc[11] = "and setup all the bits and pieces of our system, including Windows, Accessories, Desktop, Explorer, File Systems, Login and Authentication, Start Menu and Task bar, Startup and Shutdown, System, Troubleshooting, Hardware, Network, Security and Software.";
fDesc[12] = "you publish server changes, troubleshoot connection issues or collect logs data from your client computer for further analysis. It Requires Microsot .Net Framework 2 and Microsoft Installer 3";
fDesc[13] = "interactive labs, 6 CCNA exam like practical troubleshooting scenarios,70 randomized flash cards,3 router tests";
fDesc[14] = "troubleshoot the electrical circuits. So if you are an electrical field student, professional electrical engineer or if you just want to learn about electrical circuits and troubleshooting techniques as a hobbyist then this training software is for you.";
fDesc[15] = "troubleshooting. Troubleshooting Pak is composed of the Health Reporter, Log Analyzer, Status Monitor and Group Policy Spy.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}