var fDesc=new Array();
fDesc[0] = "It is a file synchronizer with unique features like handling more than 2 folders with just few clicks.
Main features:
- multiple folder handling (2 or more).
- the folder analysis can be modified on your needs.
- the ability to handle project files.
- the ability to save in a separate folder the source changes (Export Delta).
multithreaded.
- optimal file multithreaded copy engine (by using temporary file and/or by overwriting files).
- configurable. You can easily integrate it with a text editor, a hex editor, and a diff viewer.
- minimal registry usage (only for Explorer integration).
- small, fast, and clean.
- HTML Help included.";
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 = '';
}
}