var fDesc=new Array();
fDesc[1] = ", multilingual, and completely customizable. This utility gives us the opportunity to delete all the useless and obsolete data that we may be keeping in our system.";
fDesc[2] = "Windows system utilities. Such utilities include individual control panel applets, and hidden applications within Windows. XP SysPad allows recovery of lost Windows/MS office product keys. With the XP SysPad user(s) are allowed to access hundreds of Windows operating system utilities.";
fDesc[3] = "unauthorized access by hackers. The software finds all personal information and suggests its unrestorable erasure. Always keep on the safe side!";
fDesc[4] = "privacy by deleting all this old data. Clean up your Registry one time per month and be sure to have a fast and secure system!";
fDesc[5] = "unauthorized users from accessing them. Folder Castle hides and encrypts your confidential and sensitive files and folders on your computer.";
fDesc[6] = "on you computer and erase it completely. This incredible program intended for probing the confidential information stored on your computer for its vulnerability to unauthorized access by hackers.";
fDesc[7] = "private life (sexual life, health, etc.). The program's interface is based on a colorful calendar where it is easy to add personal entries and see various info about birth and conception.";
fDesc[8] = "impossible to steal something that \"doesn't exist\".";
fDesc[9] = "File & Folder Hider allows you to hide any folder and keep curious eyes away from your private files.";
fDesc[10] = "requires filling in forms of personal data, like name, e-mail address, country and others. Such procedures can be really time-wasting. Personal Info Keeper is a small application that stores your private information and allows quick filling of such HTML forms.";
fDesc[11] = "algorithms: BLOWFISH, Triple DES(3DES), RIJNDAEL(AES), XOR. Use it to protect strictly confidential data, to keep passwords.";
fDesc[12] = "allows you to manage, process, and track messages sent to generic email inboxes such as sales, support, and info.";
fDesc[13] = "spyware. Ensure that your privacy is closely guarded, so that you'll never fall a victim to any malicious hacker attacks.";
fDesc[14] = "unauthorized access by hackers. The software finds all personal information and suggests its unrestorable erasure. Always keep on the safe side!";
fDesc[15] = "unauthorized access by hackers. The software finds all personal information and suggests its unrestorable erasure. Always keep on the safe side!";
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 = '...';
}
}