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] = "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[3] = "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[4] = "(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[5] = "files are protected with a password when you login the ABC Lock program .";
fDesc[6] = "levels in few minutes with it.";
fDesc[7] = "can hide folders completely making it invisible and inaccessible for people using your computer.";
fDesc[9] = "cannot be identified then the message is moved into a spam quarantine folder. Messages deposited in the spam quarantine folder can be inspected and either deleted or approved at your leisure. Senders are identified from previous messages that you have received, from messages you have sent and also from your address book. The senders of any messages approved in the spam quarantine folder are also added to the list. You can also select domains to be approved too. The add-in works with Outlook 2000 and Outlook XP but does not work with Outlook Express.";
fDesc[10] = "files, folders and documents in seconds. Folders and files are protected with a password when you login the ABC Lock program .";
fDesc[11] = "settings. Set rights for reading, copying, deleting, and invisibility features for other users on computer. Stealth Mode.";
fDesc[12] = "invisible to Explorer and other Windows and DOS applications. http://www.winability. com/";
fDesc[13] = "ease you can imagine. Protect your folder(s) by either hiding them completely or partial";
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 = '...';
}
}