var fDesc=new Array(); fDesc[0] = "Text Cleanup is a program to clean up badly formatted text from a variety of sources, such as e-mail messages, text copied from a web browser, and text copied from PDF files. Text Cleanup saves a great deal of time over cleaning up the formatting manually. It will remove unwanted line breaks, remove e-mail reply marks, clean up spacing and indentation, perform multiple find/replace operations, and other cleanup tasks. Text Cleanup can clean text automatically in the background, every time you cut or copy, or you can clean text interactively using the built-in text editor."; 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 = ''; } }