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] = "registry entries caused by software installations and un-installations that went awry! Registry First Aid can fix that!";
fDesc[4] = "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[5] = "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[6] = "File Lock, Folder Lock, System Lock, Shortcut/Program Lock, Internet Lock, Restricted System, Window Lock, intruder Detection with Alarm.";
fDesc[7] = "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[8] = "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[9] = "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[10] = ", or altering your documents. This software called Password Protect allows you to protect an unlimited numbers of folders with just writing your password!";
fDesc[11] = "(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[12] = "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[13] = "encryption algorithm using 256-bit AES, securing a high level of protection. It can also compress files before they are encrypted and added to the locked container, saving disk space.";
fDesc[14] = "allows you to lock folders by allowing you to select the directories in which you choose to prevent access.";
fDesc[15] = "removable drives. Install the program on your USB external or removable drive and lock/unlock folders at any computer your drive is connected to.";
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 = '...';
}
}