var fDesc=new Array();
fDesc[0] = "DFIncBackup is a personal backup program designed for incremental backup of files directly to zip archives. It can backup to removable disks (floppy, CD/DVD, ZIP, etc), local hard disk, network. One archive can contain several root folders from different disk volumes and any subfolder can be tuned separately. Templates make it easy. The program includes a scheduler that allows you to specify days of the week, month or year to backup your files.
Features:
* Incremental backup of files. It saves only changed files to make the backup file size smaller.
* Internal packer using full compatible ZIP files format for archives.
* Strong encryption AES 256-bit.
* Internal CD/DVD burner.
* Split large backup archives into several smaller volumes allows saving to removable disks.
* Internal scheduler.
* Easy archives management: save, restore, remove archives.
* Quick add needed files to project by using templates.
* Templates editor.
* Backup project can contain several root folders.
* Flexible tuning of root folders and sub-folders.
* Easily view selected files list in project editor using folders tree with explorer-like style.
* Log file viewer for easy navigation and search.";
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 = '';
}
}