var fDesc=new Array();
fDesc[0] = "ExamDiff is a freeware Windows 95/98/Me/2000/XP/2003/Vista/7/2008 tool for visual file comparison. It is quick and very simple to use, and has a number of convenient features that many users have been asking for a long time from a file comparison tool.
ExamDiff is a part of a suite of products that includes FtpVC, an FTP-based Version Control System that allows joint software development remotely over the Internet.
Features:
-There is no need to specify both filenames: just enter a directory name for one of the files to be compared. ExamDiff will try to use an entered filename with a specified directory name.
-Remembers a user-specified number of last compared first and second files. This allows quick selection of the two files the user wishes to compare.
-Autopick feature in Compare dialog that remembers matching file pairs.
-Automatically detects file changes and prompts the user to re-compare files.
-One push re-compare function which attempts to leave the viewer's focus in the same place as before the re-compare.
-Drag and drop support for dropping one or two files into the program's window (e.g. from Windows Explorer).
-Easy editing of the first and second files. ExamDiff will spawn any editor (configurable by the user) with the first or second file, and line number option (available for editors that support this, through ExamDiff variables: $FILE (first or second file name), $CURFIFF (number of line at which the current difference starts), and $CARET (number of line where the caret is located).
-Saves the file differences in a standard UNIX DIFF file.
-Easy navigation through the differences via "Previous Difference"/ "Current difference"/ "Next Difference" buttons and hot keys or via a drop-down list box of all the differences
-Allows the copying of text from the comparison panes via drag and drop, a hot key, or a right button pop up.";
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 = '';
}
}