var fDesc=new Array();
fDesc[1] = "Component of Acer Empowering Technology • eData Security Management • eLock Management • eNet Management • ePower Management • ePresentation Management • eRecovery Management • eSetting Management";
fDesc[2] = "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[3] = "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[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] = "even the Administrator will be able to access or see the protected files. Also, its technology makes it impossible to gain access from a local network or the Web.";
fDesc[6] = "keep your personal data. It doesn't require any configuration but just entering your password and repeating it twice. It's a must have for all users who share their computers with others. You can also change the password anytime or simply remove your folders with one click.";
fDesc[7] = "accomplished this helpful and important task. Select a folder to protect, set a password and enjoy your safety! No one will be able to have access to the hidden files, only you, since everytime you want to open the folder, you will be asked to write a password.";
fDesc[8] = "ideal for notebooks. If your notebook is lost or stolen, your sensitive data will not end up in the wrong hands.";
fDesc[9] = "install the program on your PC, laptop, USB drive, external or removable drives.";
fDesc[10] = "them. This tool works great for protecting data when you move it from one computer to another. Compression options are available";
fDesc[11] = "can hide folders completely making it invisible and inaccessible for people using your computer.";
fDesc[13] = "your information or sensitive data and protect them against malicious or unintended intrusions.";
fDesc[14] = "allows users to hide personal files or those they wish to keep safe. It does the same for passwords and banking information kept in the Password Protector vault.";
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 = '...';
}
}