var fDesc=new Array(); fDesc[0] = "String-O-Matic performs search and replace operations with multiple strings in multiple files. It was designed specifically for computer programmers working on large projects with many source code files, however any type of file can be used, including HTML. Search and replace operations can also be performed on filenames (mass renaming). Regular expressions, case-insensitive, whole-word, and whole-line searches are supported. ASCII, Unicode, and UTF-8 files are supported. A detailed log is kept of every string that is found and replaced. String-O-Matic is a professional, rock solid program - don't trust your files to anything less!"; 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 = ''; } }