var fDesc=new Array();
fDesc[1] = "non-commercial use only.";
fDesc[2] = "help protect, repair and optimize your computer. Finding what other utilities miss, it can keep your PC error-free and smooth than ever.";
fDesc[3] = "efficient. This incredible application ensures your personal privacy while surfing through the Web and protects your PC from information theft.";
fDesc[4] = "spyware, clean registry, sweep privacy, and clean junk files with a mouse click.";
fDesc[5] = ", high-performance detection engine to accurately identify missing and invalid references in your Windows registry.";
fDesc[6] = "test patterns displayed at various resolutions. Allows simultaneous testing of Multi-monitor configurations.";
fDesc[7] = "powerful registry cleaner, it also includes a number of tools to optimize your system. You can clean your registry with just a few clicks. If you are an advanced user you can also limit the scan to certain parts of registry using Custom Scan, or you can use the Quick Scan feature.";
fDesc[8] = "two modems or a single modem, independent of your ISP. ModemTest logs any data corruption and incorporates a modem speed test.";
fDesc[9] = "achieving a fast, professional and accurate service delivered to their customers";
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 = '...';
}
}