var fDesc=new Array(); fDesc[0] = "FileDupeLess is a tool that helps the user to find files with the same content. The program uses file names, sizes and checksums to find identical files or files with the same content. The "include" and "exclude" filters make the file search process more flexible. The program shows search results as a list or creates an HTML report that can be saved for future analysis. The report contains links to original files that help to review the file content in a comfortable way."; 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 = ''; } }