var fDesc=new Array();
fDesc[1] = ", find, and share your notes and information more efficiently and effectively. The program features powerful search capabilities that help you locate information quickly and easy-to-use shared notebooks that allows you to manage information overload, whether online or offline.";
fDesc[2] = "Essential is surprisingly simple for the novice user, and very convenient for the more experienced user. We also share our best photos with friends, upload to the network, or use templates to create digital albums.";
fDesc[3] = "The present limit is 20 folders with 20,000 files each and no more than 4 GB in total. Very useful to avoid the hassle of transporting files in a USB drive.";
fDesc[4] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[5] = "Program often can not completely uninstall some applications and broken registry keys. Revo Uninstaller is a better and easier way for you to completely uninstall any unneeded application that standard Windows Add/Remove Program can't remove.";
fDesc[6] = "other applications of this kind. With this tool you can write images on a disc, mount on a virtual drive, create an image from a disc or convert it to different formats, create bootable CDs/DVDs, etc.";
fDesc[7] = "totally intuitive interface similar to Windows Explorer (with check boxes next to files and folders) that will allow you to select the files and folders you want to back up, the destination and filename, and any optional settings.";
fDesc[8] = "would like to create, this program automatically choose folders containing music files, documents or video files. You can also select additional files, folders and subfolders manually.";
fDesc[9] = "searching for a particular folder in a hurry. Having color-coded folders makes it much easier to find the needed one and you don’t waste your time at unnecessary search";
fDesc[10] = "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[11] = "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[12] = "folder on your computer. You can type in a search filter to limit what files and folders are displayed. Everything only uses file and folder names and takes a few seconds to build its database. 1,000,000 files will take about 1 minute.";
fDesc[13] = "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[14] = "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[15] = "use program that allows you to skip important folders by specifying them in settings or by marking them as a protected folder.";
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 = '...';
}
}