var fDesc=new Array();
fDesc[1] = "password to prevent unauthorized access. The user interface is as easy as 123. Just create a new locker, set your password and drag any file or folder to encrypt. Multiple users can use the program by creating multiple lockers on the same computer.";
fDesc[2] = "defined. When a folder or file is protected (locked) it visually disappears and nobody can reach it or even see it unless (s)he uses the addecuate password defined by the original user.";
fDesc[3] = "to view the hidden folder even if the program is uninstalled. It´s easy to use and has no size limitation on the protected folders, but for the available space on disk.";
fDesc[4] = "registry entries caused by software installations and un-installations that went awry! Registry First Aid can fix that!";
fDesc[5] = "you to control the access to your folders in different ways. You can hide your personal folders, make them look empty and make them read-only or inaccessible using password protection.";
fDesc[6] = "to control the access to secured folders. Program’s main window is the center of your data protection, and you can open it only using a special password. It offers you three methods of folders protection: hide, lock, hide and lock.";
fDesc[7] = "File Lock, Folder Lock, System Lock, Shortcut/Program Lock, Internet Lock, Restricted System, Window Lock, intruder Detection with Alarm.";
fDesc[8] = "carefully secured especially if computer is used by other people. Folder Security Personal 4.1 is a perfect tool for providing such protection. It includes many ways for securing your data.";
fDesc[9] = "kernel level. Hide Files and Folders has an in-built file explorer that can help you finding out and locking desired files easily and faster. Just select a file or folder, click on the + button to add password protection to it and choose a protection method to make it completely inaccessible.";
fDesc[10] = "been switched off. It works simultaneously on encryption and thrashing of files and folders from being accessed by any outside user. A fortification wizard has been allocated to ensure the protection of a number of objects by the introduction of password.";
fDesc[11] = "invisible, where files can be secure. Hide and password-protect files, folders, pictures, and documents in a blink. During the installation, the password for accessing the program has to be set, for it to be protected from the beginning.";
fDesc[12] = "you the possibility to protect your privacy by protecting your sensitive information from unwanted access, giving you several tools to do it. Principal options are: prevent access to any of your files, folders or a complete drive by locking them; hide files or folders making them completely invisible.";
fDesc[13] = "(files, folders and discs). Hide Folder will stop any unauthorized access to important and significant programs and information for every user. Any folders that the program protects will be invisible, accessible in read-only mode, or even inaccessible.";
fDesc[14] = "program enables you to protect any file or folder with a password. You can also use the program with multiple user accounts. You can also restrict Internet access from your PC with a single click using this application.";
fDesc[15] = "unlimited folders or document files using Advanced File Lock. You can hide the password-protected files or make them inaccessible in order to give your private data complete 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 = '...';
}
}