var fDesc=new Array();
fDesc[1] = "wizard-like approach for executing backup tasks. Apart from just storing files to a desired location, the program also has capabilities to synchronize, mirror, and group files.";
fDesc[2] = "documents, emails and rules, registry, settings.Features 256-bit AES encryption to ensure full security of your confidential data.";
fDesc[3] = "utility to restore your files again. Backup4all is an easy to use utility that will help you to make safe backups of your files and folders, and using the New Backup Wizard you will be able to create a new backup job, easy and quickly.";
fDesc[4] = "others, you should keep yourself prepared for the these. In such cases a simple backup solution will not serve your purpose. You need a handy and reliable tool like “Handy Backup” to serve you with automated, incremental and mirror backup facilities.";
fDesc[5] = "filters, scheduler, writes to CD/DVD, FTP backup, file versioning, zip encryption, backup open files, email notification";
fDesc[6] = "supports Windows CE PDA's, which is great. But, in short, EF Commander is a file explorer enriched with hundreds of features that usually are found in separate applications.";
fDesc[7] = "duplicated files. EF Duplicate Files Manager does this work, it will search all your computer for the specified file and its duplicate by the same name, same size and content. Once it finds them you have the option to open them or delete them.";
fDesc[9] = "wizards, automatic backups, data compression, strong military AES encryption and FTP support.";
fDesc[12] = "archive formats, including ZIP, RAR, BZIP2 and more.";
fDesc[13] = "manager. Saving to HDD,LAN,floppy,CD/DVD. Backup project can contain several root folders. Log file viewer.";
fDesc[14] = "data to local and network drives, CD/DVD media or FTP server.";
fDesc[15] = "browsing and searching. Multilingual.";
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 = '...';
}
}