var fDesc=new Array();
fDesc[1] = "remember only one ID and password. When it is used with an optional biometric reader, like a fingerprint reader, you will have no need to remember passwords.";
fDesc[2] = "simple way. You can put 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[3] = "encryption (256-bit), dual encryption that includes both 'Blowfish' and 'Rijndael' with 256 bits each. The application can be downloaded as a desktop program, PC resident, or as a portable application for being used with USB sticks.";
fDesc[4] = "secure and comfortable way. With this program you will no longer have to remember thousands of passwords, just one, the master key, which allows you to see all the other passwords.";
fDesc[6] = "Advanced Encryption Standard (AES) algorithm. The program features a simple and intuitive user interface, very suitable for beginners and advanced users alike.";
fDesc[7] = "encrypted database with up to 256 AES security, one of the the largest and best-known encryption algorithms, from its database you will have access to the rest of your passwords.";
fDesc[8] = "data using strong encryption to keep them safe from possible threats. The program will enable you to store passwords for e-mail and online banking, credit card numbers and other sensitive codes";
fDesc[9] = "partitions (drive letters) to keep your private and confidential data secure";
fDesc[10] = "The program can export the database to TXT, HTML, XML or CSV files.";
fDesc[11] = "helps you to fill forms automatically. A lot of efficient features help you to manage your data: Using Blowfish encryption Organize your entries in a tree structure Handle multiple files Dynamic data structure: Define your own entries Sorting and searching features Print, export or import data Handle TAN lists Password Generator with real random numbers Drag passwords to target window Auto Fill - writes passwords automatically to login windows if they pop up Quick Access menu for your favorite data Add expiration dates to password entries";
fDesc[12] = "information will be protected using newest reliable password-based encryption method.";
fDesc[13] = "logins, documents and files. It uses totally secure AES 256 bit encryption to keep your information safe.";
fDesc[14] = ", the others will be still safe. Here is how. When you sign up for an account, for example hotmail, you need...";
fDesc[15] = ", login-information, credit card numbers and other private data encrypted in a clearly arranged place.";
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 = '...';
}
}