var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to search for words or phrases within multiple files. First, drag and drop files you would like to search in or use the 'Add Files' buttons. You can also load a list of files in C:\test\1.txt C:\test\2.txt format as long as entries are separated by a line break. Next, simply enter a string of characters to find. You can filter results by clicking "Remove Results Containing X" or "Remove Results Not Containing X." The final results can be saved to a text file or copied to the clipboard for pasting."; 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 = ''; } }