var fDesc=new Array();
fDesc[0] = "BitSilo is a Backup/Restore program for Windows.
- Creates timestamped backups for files and directories you specify.
- Create multiple backup sets, each containing a different set of files or directories to be backed up on a daily/weekly/monthly schedule.
- Create a full backup to save all the specified files; create an incremental backup to save only those files that have changed since the last backup.
- Exclude files from the backup using any part of the file folder or name.
- Flexible management of disk space used by backup archives.
- Restore files from any backup using a query language to find files.
- Automatic removal of old backups; cleanup rules govern which recent backups to keep.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}