var fDesc=new Array();
fDesc[0] = "Email Address Pro is an application that collects on-line email address. It helps you to manage email address into three categories: subscription, unsubscription and excluding email address pattern. It allows you to choose the folders, files or file types in your PC or network neighborhood and go to sub-folders for searching email address.
A full set of operations is provided for adding, deleting, modifying, saving and appending to files. Email address list can be sorted by user names or by mail service providers.";
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 = '';
}
}