var fDesc=new Array();
fDesc[0] = "Backup2 FTP is a backup program for Windows that will back-up your important data only to remote FTP locations.
With Backup2 FTP you can protect your important files and folders using the scheduler and password protection.
When defining a back-up job you can set source filters, so that only specific files/folders will be backed-up. Once the back-up finishes, you can see what files have been changed since the last backup or read statistics about the next backup execution.";
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 = '';
}
}