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] = "files from NTFS/NTFS5 and FAT12/FAT16/FAT32 files systems at high speed. It allows you to recover accidentally deleted files or folders, permanently deleted files using the keys Shift + Delete, among others.";
fDesc[4] = "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[5] = "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[6] = "we can use this program for parental control. It offers several protection methods that we can activate, deactivate, or change at any time.";
fDesc[7] = "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[8] = "unauthorized users from accessing them. Folder Castle hides and encrypts your confidential and sensitive files and folders on your computer.";
fDesc[9] = "allows you to lock folders by allowing you to select the directories in which you choose to prevent access.";
fDesc[10] = "files are protected with a password when you login the ABC Lock program .";
fDesc[11] = "user-friendly tool to hide and safely protect your private information from erasure and unauthorized access.";
fDesc[12] = "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[13] = "documents from curious colleagues, games from the chief, adult files from children and much other.";
fDesc[14] = "information stored in your computer is fully confidential with VIP Files Protector - mighty encryption and shredding software.";
fDesc[15] = "can drag-and-drop the desired files/folders from Explorer into the Hide Files window. In one mouse click they become invisible.";
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 = '...';
}
}