var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to remove text between specified characters or text strings. The user simply adds required files or an entire folder before entering the leading and trailing text strings. There is an option to add "Enter" (carriage return) after removal and another to remove the actual leading and trailing strings along with the text between them. Sample files are included as an aid for new users. With this user-friendly and time saving application, removal of specified data from large numbers of files takes 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 = ''; } }