var fDesc=new Array();
fDesc[1] = "files, text files as well as MP3 audio files. Using simple commands and tools you can compare and differentiate between two files. You can merge the changes, synchronize your files and create reports for the changes made.";
fDesc[2] = "highlights changes within lines; editing or fast by-difference merging; printing; html and text reports; zip support; Unicode support.";
fDesc[3] = "between each one of the folders or files you compare, making thus a single, complete file. Simply, once it has compared the files, you will be able to synchronize them.";
fDesc[4] = "features that many users have been expecting for a long time from a comparison program.";
fDesc[5] = "these differences. For programmers, web developers, and anyone else who works with multiple revisions of files.";
fDesc[6] = ", module code etc.). VBA Code Compare uses direct access for working with VBA modules. Supports Excel, Access and Word files.";
fDesc[7] = "users have been expecting for a long time from a comparison program.";
fDesc[8] = "your source code, web pages and other files with DiffMerge. Use it to compare, understand and combine different file versions.";
fDesc[9] = "copied so that both folders are identical. Synchronize an office computer with a home computer with this program.";
fDesc[10] = "to compare, understand and combine different project versions and file versions.";
fDesc[14] = "via a SQL script automatically created and collected through time.";
fDesc[15] = "to the user before synchronization. Synchronization process done safely through simple wizard. Keep home and office files organized.";
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 = '...';
}
}