var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to filter text files based on character content. The user can specify the files or an entire folder to be processed. There is a filter option to add lines containing or not containing user-specified text and a check box to use case matching or not. The results are displayed in the lower pane and can be saved as a text file."; 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 = ''; } }