var fDesc=new Array();
fDesc[0] = "MLW can supplement mailing lists with address owner names using information from other lists, delete address owner names from mailing lists, and also many other things.
Actions list:
- Remove duplicated emails
- Concatenate two lists
- Exclude emails from list
- Make the list rich
- Make the list poor
- Correct emails syntax
- Filter emails
- Sort emails in mailing lists";
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 = '';
}
}