var fDesc=new Array();
fDesc[0] = "Everyday Auto Backup is a powerful program designed to backup files automatically. The backup project allows you to set:
- The name of the backup project.
- Source directory and destination directory.
- Backup type: Minutely, Hourly, Daily, Weekly, Monthly, Manually.
- Whether to include the sub-directories.
- The start time (for Daily, Weekly, Monthly).
- Whether to check the file time.";
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 = '';
}
}