var fDesc=new Array();
fDesc[2] = "are given Firewall protection, Anti-Spyware, Email scanning and real-time scanning tools to help you in keeping your computer safer than ever.";
fDesc[4] = ", firewall and parental control. Trend Micro Internet Security Pro enables you to browse the web safely and also keeps your identity and private data safe.";
fDesc[5] = "and data with automatic scans, updates, prevent unauthorized changes, and outbreak alerts. Staying up-to-date will help you stay away from latest malware: viruses, worms, Trojan programs, and spyware.";
fDesc[8] = "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[9] = ", spyware and other Internet security threats. Our managed service includes access to our \"Security Center\" web portal.";
fDesc[14] = "and variants, detects and removes spyware, supports plug-ins that add new security capabilities. Office Scan Client 8.0 constantly scans your disks, local memory, mail and web threats from browsing suspicious web sites.";
fDesc[15] = "or a web page, and warns you of possible phishing scams. TrendProtect rates current pages and pages listed in MSN.com, Google.com and Yahoo.com search results.";
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 = '...';
}
}