var fDesc=new Array(); fDesc[0] = "A.F.9 lets you edit files by replacing characters or any other bytes. The functionality is similar to a replace function in text editors, but there are a few differences:

* You can edit many files in one operation.
* You can replace several search phrases at a time.
* You can use characters, decimal values or hexadecimal values for your search and/or replace argument.
* You can edit really large files, since A.F.9 doesn't need to load the entire file into system memory."; 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 = ''; } }