var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to find line differences in two text files. The user chooses the first and second text file and there is a check box to enable/disable match case before starting the comparison. The results are displayed in three panes: the first for lines that are in both files, the second for lines in the first file but not in the second and the third pane for vice versa. Each of these panes has buttons for saving the results or copying them to the clipboard."; 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 = ''; } }