var fDesc=new Array();
fDesc[1] = "This version also added full support for Blu-ray AACS MKB15.";
fDesc[2] = "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[4] = "pictures on the computer, but only one of them is really safe. Protect your collections of digital pictures with PicaSafe! Keep. Watch. Hide.";
fDesc[5] = "challenging play and fun. There are two characters: grunts and bosses. The Grunts are the bad people that try to prevent the user from progressing through the level while the Bosses are the end-of-level opponent the user must destroy to finish the level.";
fDesc[6] = "software has a clear and handy interface. It is easy to use, you can do all the operations using only your mouse. There is embedded navigation system – Browser window, where you can look through web pages and download the latest keys.";
fDesc[7] = "your folders and secure your data by applying a true, low level encoding. Strong ciphers up to 2048 bits.";
fDesc[8] = "encryption with the AES- or Blowfish-Algorithm supports the password based SYMM-System and the certificate based HYBRID-System (PKCS).";
fDesc[9] = "It encrypts all kind of file which is unbreakable that gives more security to users. It can be apply for a single file or a directory or all subdirectories. It’s very easy to use and easily integrated with right click menu.";
fDesc[10] = "approach, you are welcomed by a sign, which surely makes your spine tingle. As you enter the estate, you will find an old crypt. You can even see some light inside!";
fDesc[11] = "Security-Suite offers innovative and professional security and encryption modules for private and business use.";
fDesc[14] = "algorithm, which is the most advanced and powerful encryption method used today. Encrypts in 128 bit or256 bit ciphers.";
fDesc[15] = "you choose password which is needed for decryption. Encrypted file have .rzx file type.";
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 = '...';
}
}