var fDesc=new Array();
fDesc[1] = "Synchronise folders. Perform code reviews/audits. Work with folder trees containing thousands of files. Edit files in-place.";
fDesc[2] = "to analyze the important Differences between them, and Merge/Synchronize these Differences the way you like.";
fDesc[3] = "support for drag and drop files into the queue and upload and download all the options and profits of a professional client. Remember this version only works on X64 processors or those that have both instructions such as Intel Core and Core 2 Solo / Duo Processors";
fDesc[4] = "and lexical analysers. This includes both Unicode and Multibyte Character Set (MBCS) variants.";
fDesc[5] = "your source code, web pages and other files with DiffMerge. Use it to compare, understand and combine different file versions.";
fDesc[6] = "to compare, understand and combine different project versions and file versions.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}