var fDesc=new Array(); fDesc[0] = "This software offers a solution for users who want to find and replace text in one or more files. The user can add files, entire folders or load a list of files from a file. There are buttons to allow removal of filenames containing or not containing user specified characters from the list. There are tabs to allow the user to enter a single text string to find and one for the replacement or multiple user specified sets for search and replace. The software includes sample files as an aid to new users. Once ready the user can search and replace even large batches of text strings with just one click."; 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 = ''; } }