var fDesc=new Array();
fDesc[2] = "data. This application scans your files and deletes stored private information to protect your privacy. In its free scan version some features are disabled.";
fDesc[3] = "your PC on the Internet and blocking suspicious connections.";
fDesc[4] = "Chrome, Mozilla Firefox, Microsoft IE and Opera, as well as most common chat and email software. Deletes the information for good, instead of hiding it.";
fDesc[5] = "intelligence with different mysteries and cases to solve. Move around the city and find the way to get all the information needed to solve your case.";
fDesc[6] = "all your passwords in one database, which is locked with one master key or a key file, so you only have to remember one single master password or select the key file to unlock the whole database.";
fDesc[7] = "any other confidential information in one convenient and secure place. All data files are stored in an 448-bit encrypted format to prevent unauthorized users from accessing and viewing them.";
fDesc[8] = "introduce us to a third person adventure. The main character (who we will control) is Nicole Bonnet, a girl who has recently joined up the FBI. She must collect evidence to solve a series of horrific murders.";
fDesc[9] = "Password saves your user IDs and passwords you use to access your personal accounts of your favorite websites. Password Prime uses two mechanisms to protect your data from strangers: password protection when the program starts, and a system encryption to your database.";
fDesc[10] = "ArchiCrypt Live lets you encrypt all file types on your PC, laptop or network. That way only you will be able to access your confidential information.";
fDesc[11] = "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[12] = "Your information is encrypted and hidden inside the JPEG file without affecting the picture's appearance, quality or dimensions.";
fDesc[13] = "who need to store confidential information. It is a program that lets you create protected partitions practically on any flash drive. The new version gives the access to the secured information stored on private partitions from any PC.";
fDesc[14] = "partitions (drive letters) to keep your private and confidential data secure";
fDesc[15] = "sensitive data. This program is a unique solution. It is based on “Strong Encryption” – innovative security concept and supports three key sizes 128, 192 and 256 and key length from 32 up to 448 bits, providing high unbreakable protection.";
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 = '...';
}
}