var fDesc=new Array();
fDesc[1] = "Truecrypt is not a yet-another-privacy-to ol, but it stands out from the rest by being open source and still providing one of the best encryption algorithms to secure the sensitive data. It is capable of creating encrypted volumes which can be mounted on the fly. It also has the ability to encrypt the system partition or any other partition, including portable drives.";
fDesc[2] = "to be infallible. This program enables to transfer data between colleagues, partners, customers or friends and relatives in a secure manner. It offers one password for the file, which is to be shared by the two parties.";
fDesc[3] = "and partitions from unauthorized access. All files will be protected without depending on the currently installed operating system.";
fDesc[4] = "or more \"virtual disks\" on your PC - anything written to which will be automatically, and securely, encrypted before being stored";
fDesc[5] = "them. Provides 100% protection of your private information across all Windows versions, including 64-bit releases.";
fDesc[6] = "desktop computers 100% of the time. It can also hide your date into music files.";
fDesc[7] = ", exchange encrypted data with others, and feel sure that your information is safe from external and internal manipulation.";
fDesc[8] = "about your information, it will be highly secured because the encrypted data cannot be accessed without entering a password, even if stolen. This tool uses the AES 256-bit encryption algorithm also used by important organizations to protect information.";
fDesc[9] = "hard disk into a data strongbox that can be accessed by its owner only.";
fDesc[10] = "the operating system(OS), in real time. DCPP is the only one able to hide the entire OS, and also works with external USB-Token.";
fDesc[11] = "requirements.Encrypt you files and folders to protect your private data.";
fDesc[12] = "make a disk partition encrypted on the windows system....";
fDesc[13] = "access to different users and preventing unauthorized access from non-authorized people";
fDesc[14] = "Disk provides the ultimate security standard for encryption at the physical sector level.";
fDesc[15] = "disks and other endpoint devices. It combines the industry standard NIST-certified AES 256-bit encryption, an innovative Disk Firewall mechanism, 64-bit platform compatibility, USB disk portability and smart card authentication into a low-cost and easy-to-deploy solution. It provides proactive protection against viruses, Trojans, adware, spyware and unauthorized network access. Sensitive data are not only encrypted, but are protected with Dekart's innovative Disk Firewall mechanism: a unique technology that creates a white-list of 'trusted' applications allowed to access the encrypted disk. If a specific application is not found in the white-list of programs, it will be unable to read or alter the confidential information stored on the virtual encrypted disk. Support for smart cards and biometric devices provides an added layer of data protection by storing the user's private...";
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 = '...';
}
}