var fDesc=new Array();
fDesc[1] = "maximum performance. Scanning process finds and removes in a safe manner the following malicious software (Malware): Trojan Horses, Dialers, Worms, Spyware, and Adware.";
fDesc[2] = "e-threats. The program helps to protect the system from viruses, trojans, worms, spyware and adware. It scans files, email, and Internet traffic as well as protects instant messengers.";
fDesc[3] = "consumption, is one of the leading antivirus software applications on the market today.";
fDesc[4] = "do time stretching, pitch scaling, and/or sample rate conversion, as well as optionally recreate missing high-frequency components.";
fDesc[5] = "problems on your PC and fixes them all - instantly!";
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 = '...';
}
}