var fDesc=new Array();
fDesc[0] = "In general terms, DeltaCopy is an open source, fast incremental backup program.
Features:
-Permission switch
-Verbose Logging
-Flush log to disk
-Vista and Windows 7 friendly
- Incremental backup - Copies part of the file that is actually modified
- Task scheduler - Profiles in DeltaCopy can run based on a schedule
- Email notification - Administrators can receive email confirmation on successful as well as failed transfers
- One-click restore - Backed up files can be easily restored.";
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 = '';
}
}