var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to search one or more MS Word documents for the same string simultaneously. This search can be either case sensitive or case insensitive. Simply supply the document/s to search and the string to search for and, with a push of a button, the software will not only find the Paragraph Number, Absolute Line Number and Relative Line Number of each occurrence in each file, but allow you to open MS Word and go to the location. In addition, the results may be saved to the clipboard, a text file or MS Excel."; 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 = ''; } }