var fDesc=new Array();
fDesc[1] = "modernized and now it contains many new features that make our navigation more comfortable and faster. Windows Malicious Software Removal Tool searches our computer for malicious software. In this version, we can choose to install Accelerators, Web Slices, Search Providers, and Add-ons.";
fDesc[2] = "really easy-to-use since most of the utilities within the suite can be controlled and accessed through the Task Launcher homepage. The Works startup screen initially offers access to a calendar and contacts, but you can also view templates.";
fDesc[3] = "virus, bots, tracking cookies, Spam, Spyware and hackers. PC Tools Internet Security offers Firewall as well that protects your important data by stopping hacker from gaining access to your computer.";
fDesc[4] = "allows you to isolate faults, simplify processing of diagnostic data, and increase internal network security.";
fDesc[5] = "invisibly in the background, while others appear merely as extensions to Windows.It includes: Control Panel File Tools Internet Tools Search Tools Folder Tools File Dialog Tools Interface Tools";
fDesc[6] = "set access rights to software, hide folder content, schedule time limits and much more. Get control of your computer!";
fDesc[7] = "alerts immediately via audible alarm, message, e-mail, or third-party software when a connection fails. This is an excellent network monitoring tool delivering low cost, simplicity of operation, and 24/7 coverage.";
fDesc[8] = "experienced administrators simply refuse to use any windows system, just for its instability and insecurity, and perhaps they are right. These tools are clones of the tools that have existed for many years in unix/linux systems.";
fDesc[9] = ", service mail and html watchers, ping, traceroute, netstat, ns lookup, ftp, whois, ph, finger and many more...";
fDesc[11] = "database that allows you to submit your web site to the Internet's biggest search engines and directories and request domain whois information.";
fDesc[12] = "stores detailed information about each web site you have visited and automatically captures a screenshot of every web page.";
fDesc[13] = "Email Verify, Finger, Name Scan, plus 6 others. Also, NetGadgets provides 6 Local Information Network tools.";
fDesc[14] = "desktop. This revolutionary new tool makes finding the information you need quicker and easier.";
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 = '...';
}
}