var fDesc=new Array();
fDesc[0] = "CmdSync is a command line file/folder synchronizer designed for batch/scheduled operation.
CmdSync has the ability to compare file timestamps and then copy the files from each path to the other to ensure that the most up-to-date copy of the files exists in either or both paths. Additionally files that only exist on one of the paths can be specified for deletion.
Command line options:
-Log file
-Delete Orphans
-Report only
-Source to Target
-Target to Source
-Recurse sub-folders
-Ignore two second time diferences";
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 = '';
}
}