var fDesc=new Array();
fDesc[1] = "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[2] = "Firefox 1.0 - 2.0, Mozilla Thunderbird 1.0 - 2.0, Mozilla Suite 1.7 - 1,7x, SeaMonkey 1.0a - 1.1, and Netscape 7.x. This small and easy to use application creates profile backup files contacts, emails, cache, history, bookmarks, extensions, etc. and restore them later on.";
fDesc[3] = "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[4] = ", contact, message and configuration effortlessly and automatically. This incredible program enables you to move the selected data to a new phone or device, or for restore after a ROM upgrade in just a few steps.";
fDesc[5] = "FTP server or write to a CD or a DVD. Just try DoubleSafety and get 30 days of joyous security.";
fDesc[6] = "applications and accounts into one archive. Once you´ve imported your emails, you can search in the database for a given word, recipient, sender, subject or attachment. You can later backup your email messages burning a CD-ROM.";
fDesc[7] = "the firmware of your cellphone and restore an operable configuration even if your Motorola phone doesn't start up anymore. This incredible program features an intuitive and easy to use interface that enables you to recover and backup all the data you have on your phone in just a few minutes.";
fDesc[8] = "not know the correct solution if there is an accidental or deliberate loss of vital data, but you can always secure your vital information, data, disks and drives by making virtual backup images of them with this tool.";
fDesc[9] = "data. East-Tec Backup is very easy to use and features intuitive wizards, automatic backups, data compression, strong military AES encryption and FTP support.";
fDesc[10] = "backs up your files, but also stores important settings. This is why Spare ensures that your backups look and work just like your originals";
fDesc[11] = "your computer up in a variety of ways. You can either backup your entire hard drive and all its partitions, for example.";
fDesc[12] = "your entire system. This incredible application allows you to backup your files and folders to a secure location and recover your data in an instant or perform a complete backup of your system (Disaster Recovery) to recover from failure.";
fDesc[13] = "data on your Pocket PC. This incredible program creates self-extracting compressed executables, thus making backup and restore processes very easy and fast.";
fDesc[14] = "range of storage media. This incredible program backups and restores your entire hard drive partitions, or create bootable recovery images on CD/DVD and hard drives.";
fDesc[15] = "incredible program allows you to make manual or automatic backups (with a set interval time) when your computer is idle. The program includes 3 backup modes: a mirror backup , a full backup zipped, and a sequential backup zipped";
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 = '...';
}
}