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] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[3] = "types of malware usually met through a Web browser. Unfortunately it is mostly useful for Internet Explorer than for other web browsers.";
fDesc[4] = "your system as well handles innumerable tasks.This multi-functional tool is exclusively designed to configure your Notebook or Desktop for functioning more smartly.";
fDesc[5] = "objects from still images.";
fDesc[6] = "preserving privacy on P2P networking. PeerGuardian 2 is Open Source code, so the program code is available online for anyone who wants to see it or edit it.";
fDesc[7] = "malware to penetrate into the system. Registry entries are operating system identification of the software and its related functionality. Any modifications should be handled with care with a possibility to restore to the previous save point.";
fDesc[8] = "StartUp Tuner 2 will detect even those that do not want to be found and will give you the chance to deactivate their auto-start entry, or uninstall the whole program if you wish.";
fDesc[9] = "error messages and protects privacy.";
fDesc[10] = ", temporary Internet files, list of recent files etc. This program is a simple and efficient tool that sets clearly defined limits just with the help of a few mouse-clicks in a moment. It provides space on hard disk and security while surfing.";
fDesc[11] = "saturated your personal computer with spyware, publicity and unwanted software. Microsoft Windows Defender (actually known as Microsoft Windows Antispyware) is a security tool that helps protect you from spyware and other potentially unwanted software.";
fDesc[12] = "spyware program that is easy to install and use. SPYWAREfighter is your protection against spyware, adware and other unwanted software.";
fDesc[13] = "threaten your PC and your privacy. The program effectively scans and eliminates adware, spyware, pop-up ads, keyloggers, Trojans, hijackers, malware, and other potentially unwanted applications.";
fDesc[14] = "Suite, that automatically erases tracks left behind while surfing the web and working on your PC. This incredible also deletes surf history and footprint left behind using Messenger, Google Toolbar and Desktop Search, last files used, music lists in Media Player and search queries.";
fDesc[15] = "uninstalled. So for those programs, Add/Remove 4 Good software is a choice. Users wanting their computer to be clean of all unwanted programs can opt for a software like this. The interface has good and easy access to all the programs of the system.";
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 = '...';
}
}