var fDesc=new Array();
fDesc[0] = "Dupli Find is an automation utility that searches duplicate lines in text files and Word documents, and duplicate rows/cells in Excel spreadsheets. All you need to do to find duplicate lines is just click on the "Open" button and select the file which will appear then on the program's main window in the top box and the scanning will be started, the results of the scanning process will be also displayed in the program's main window in the lower box.";
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 = '';
}
}