var fDesc=new Array(); fDesc[0] = "Let Odyssey search your computer for any file or for words or phrases that are in any file on your computer. Search using AND, NOT, and OR boolean operators. Perform either case sensitive or insensitive searches. Search any or all file types, even exe and dll files. Once the files are searched or located, Odyssey displays in a list box all files which contain the requested search terms or the searched files. These files can then be opened and their contents viewed by simply double clicking on the file name. You can also manipulate the files by moving, copying, or deleting them."; 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 = ''; } }