var fDesc=new Array();
fDesc[0] = "ZZEE Text Utility
ZZEE Text Utility performs various operations on a text buffer. It is available as a free online version, which you can use right from your browser, and as a free Windows program (download links are at left).
ZZEE Text Utility performs the following operations:
* Search and replace
* Regular expression search and replace
* Reformat text width
* Remove email reply quotes
* Add email reply quotes
* Remove empty lines
* Remove duplicate lines
* Sort lines
* Randomize lines
* Replace tabs by spaces
* Convert to uppercase
* Convert to lowercase
* Escape HTML symbols
Result is automatically copied to the clipboard. ZZEE Text Utility uses UNICODE and supports various languages.";
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 = '';
}
}