var fDesc=new Array();
fDesc[1] = "secure and customize your mail. The program features many new enhancements to help you better manage your inbox, and keep your vital information organized.";
fDesc[2] = "feature that tunes your PC for best performance. All the automatic functions are done when system is idle keeping PC performance in mind.";
fDesc[3] = "shreds the detected threats,& shreds files &folders of your choice.It Includes a Sys. Cleaner,Sys. Optimizer &manager.";
fDesc[4] = "fix the found problems. Should you press the \"Repair All\" button, the program will inform you that the trial version can“t fix anything, and will offer you to register the program in order to get rid of all the problems that the application found.";
fDesc[5] = "(programs pretending to be helpful, but becoming harmful for the computer without being a virus). The program is very easy to use and is often updated.";
fDesc[6] = "includes Internet trojan horse programs, spyware, keyloggers, rootkits, pseudorootkits, hijackers, adware, annoyware, email relays, spam proxies, spam relays, scam downloads and email/spam robots.";
fDesc[7] = "potential threat in the website you are about to visit and also pages listed in Google, MSN, and Yahoo search results. The application is really simple and doesn't do much.";
fDesc[8] = "for protection against hackers, and Anti Phishing utility to blcok \"sppofed \" spam email.Supports Multi languages.";
fDesc[9] = "designed to steal critical financial data. PhishGuard works with Microsoft Internet Explorer to warn before you visit a known malicious site.";
fDesc[11] = "Security Toolbar ensures you are protected against known threats, scam sites, hijacking and phising.";
fDesc[14] = "interfering with your computer operations.";
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 = '...';
}
}