var fDesc=new Array();
fDesc[1] = "operating systems. It has many advanced features for making compression better than before. Most users will simply accept its recommended settings, but it has some advanced settings which are normally demanded by advanced users.";
fDesc[2] = "or more \"virtual disks\" on your PC - anything written to which will be automatically, and securely, encrypted before being stored";
fDesc[3] = "use, with few screens to learn, it works automatically since it has a scheduler module to set up programmed tasks, and well... it's free, or very affordable!";
fDesc[5] = "and inconvenient Windows edit box.";
fDesc[7] = "a backup or archive file of popular applications (e.g., Outlook, Outlook Express, etc). More importantly, it is easy to restore data to when required.";
fDesc[8] = "it is an easy to use utility that restores keys that have been modified by programs or web sites.";
fDesc[9] = "of all of your belongings.";
fDesc[10] = "automatically backs up selected files as they are changed, keeping each version. Instant Backup with only one mouse click. Many other features.";
fDesc[11] = "folders to local or remote destinations as files or as a zip archive.";
fDesc[12] = "XP is a Microsoft 'Best Choice Shareware' awarded File Manager. Download your FREE 50 day trial today!";
fDesc[13] = "'archive backups', powerful backup scheduling, backup and restore logging, zip compression, simple file restore etc..";
fDesc[14] = "together with any sub directories which it may have. Backup parameters are stored in a data file so that subsequent backups can be menu - selected.";
fDesc[15] = "allow you to back up your data at a specified interval, and/or on a routinely basis.";
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 = '...';
}
}