var fDesc=new Array();
fDesc[1] = "helps you to protect your computer from spyware and other potentially unwanted threats. Its redesigned and simplified user interface makes common tasks easier but still ensures the user is aware of the most urgent alerts.";
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] = "non-commercial use only.";
fDesc[4] = "demand” software, so users must direct the application to look for threats. Norton Security Scan has an updating feature as well as the capability to detect and erase most known threats.";
fDesc[5] = "websites and many other Internet threats. The program works quietly in the background detecting and eliminating viruses, spyware and Internet worms.";
fDesc[6] = "worms, blocks adware and spyware. It also scans - files in real-time and on demand, email messages that can contain harmful content, Internet traffic, and java and visual basic scripts. It also provides protection for your messenger applications like ICQ and MSN.";
fDesc[7] = ", virus, trojan, dialer, etc. we have installed in our computer without our permission. It can search for malware in the entire computer or just in the specified file, folder, drive, removable or external devices.";
fDesc[8] = "Live. Besides providing protection to your Pc from threats, it is packed with a number of additional features. It also helps in improving your PC’s performance by removing the junk matters from the system’s hard disk.";
fDesc[9] = "clean thousands of malwares, adwares, keyloggers, trojan horses, pybots and rootkits in seconds. This award winning application is designed while keeping the novice in mind, so no skills are required to use it.";
fDesc[10] = "websites and many other Internet threats. The program works quietly in the background detecting and eliminating viruses, spyware and Internet worms. It also protects your computer against hackers and blocks identity theft by phishing websites.";
fDesc[11] = "powerful engine that allows you to perform quick, complete or custom scans of your system. Also, you can update its database for having the most current protection. A must-have program.";
fDesc[12] = "feature that tunes your PC for best performance. All the automatic functions are done when system is idle keeping PC performance in mind.";
fDesc[13] = "computer versus spyware, keyloggers, hijackers,adware or trojans that cause problems and malfunction of your environment. It remains in memory and acts just when the malware appears.";
fDesc[15] = ", Trojan, adware, spyware, auto dialers, key loggers, hackers, and other malware, attacks and menaces coming from the Internet. It also protects our computer from unauthorized access to and from the Internet.";
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 = '...';
}
}