var fDesc=new Array();
fDesc[0] = "Because loosing files in a digital world can become a true disaster as well for professional as for home user, Backup&Synchronize offers an easy way to keep safe your essential data.
Backup&Synchronize is able to copy and synchronize data between two folders, a folder and a compressed folder (zip file), or between a folder and a distant server through internet FTP connection.
Backup&Synchronize supports network drives, external disks including USB devices and CD/DVD. Source and target can be anywhere on a network.
To add more security, Backup&Synchronize supports multiple targets. At the same time you can synchronize your files, towards one or more folders over a network, a zip file (compressed folder), and a distant FTP server.
Backup&Synchronize offers 3 synchronization methods :
- Source >> Target
- Source >> Target >> Source
- Clone
When settings have been defined, you can save the definition to a script. The script will be reused to run a synchronization manually or to schedule a task to run it automatically and transparently at a specified date and time.
Backup&Synchronize is able to copy or compress open files even locked by another process (support Microsoft's Visaul Shadow Copy technology).";
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 = '';
}
}