var fDesc=new Array();
fDesc[0] = "SyncBreeze Server is a dedicated file synchronization server, which runs in the background as a service and is capable of synchronizing disks, directories, network shares and NAS storage devices in a fully automatic, unattended mode. The sync server provides the ability to define multiple file synchronization commands, periodically execute the specified file synchronization commands at specific time intervals and/or monitor the source and destination directories and automatically synchronize files and directories when a user-defined number of changes detected.";
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 = '';
}
}