var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "browsing activity form being tracked by websites or Internet Service Providers";
fDesc[4] = "example, you can hide Internet Explorer or another Internet browser, ICQ, AIM, IRC, movies, players, e-mail, photos.";
fDesc[5] = "taskbar instead of closing or minimizing the program to the taskbar or sending it to the system tray.";
fDesc[6] = "seconds of mouse inactivity, the application hides the mouse pointer automatically and, with any mouse action, it returns it to the place it was.";
fDesc[7] = "File & Folder Hider allows you to hide any folder and keep curious eyes away from your private files.";
fDesc[8] = "hider. Secrecy File & Folder Hider allows you to hide any folder and keep curious eyes away from your private files.";
fDesc[9] = "Privacy Law & HIPAA Compliance Folder Hider software will hide your sensitive files so that they can't be seen or accessed.";
fDesc[10] = "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.";
fDesc[11] = "this handy utility.";
fDesc[13] = "materials off the screen without closing programs or losing documents.";
fDesc[14] = ", AIM, MSN, Yahoo messenger, Skype, browsers, games, players, chat, etc. when someone try to spy behind you.";
fDesc[15] = "or in task manager.";
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 = '...';
}
}