var fDesc=new Array(); fDesc[0] = "File Finder provides a highly efficient interface for quickly locating files. By combining a text box with a dynamically refreshing list box, the program will instantly display matching files as you type. Once the file is found, the user can open it by double-clicking, or access other functions from a context-menu by right-clicking. File Finder is especially useful when you don't know the exact name of the file you want. A search is performed on each keystroke, so you can perform searches as fast as you can type."; 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 = ''; } }