var fDesc=new Array();
fDesc[1] = "home use. This program protects you from viruses and spyware and includes several modules like Instant Messaging, Internet Mail, Network Shield, Outlook Exchange, P2P Shield, Standard Shield and Web Shield.";
fDesc[2] = "mail servers. Is the ultimate antiviruses and antispyware used for home and enterprises. Gives the user the protection needed to keep their valued data safe.";
fDesc[3] = "know instantly whether their computer's virus, spyware, e-mail, and firewall protection services are up-to-date. It combines a set of must-have security services with simplified access to McAfee´s security products.";
fDesc[4] = "viruses, worms, Trojans and others. Keep in mind that there is not a 100% viruses program protection, you have to make your own precautions, like making Backups from your personal information. For security reasons save your information.";
fDesc[5] = "malware intended for notebooks, desktops and servers. It integrates without problems essential security technologies in a single management console, this increases protection and lowers the total cost of ownership.";
fDesc[6] = ", protected, and keep it far away from external attacks, such as viruses, Trojans, adware, malware, spyware and all types of unsolicited activities while connected to the Internet both at work and at home.";
fDesc[7] = "proactive protection against virus, malware, adware, intruders attack, spam, Trojans, spyware and other malicious applications that run without our authorization, and can cause computer crash, and serious security and privacy problems.";
fDesc[8] = "check your network protection against attacks and intruders. Users can edit the common HEX raw data and the specific protocol field value.";
fDesc[9] = "which are violating data access policy of their organization.";
fDesc[10] = "connection with your computer.The remote workstation, user, path, OS, permissions of the accessed folder.";
fDesc[11] = "remove exceptions for programs and services so that they can receive inbound traffic. You can turn on/off the firewall with one click.";
fDesc[12] = "the MS Network connections. It allows you to monitor active connections to your resources and browse historical data.";
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 = '...';
}
}