var fDesc=new Array();
fDesc[0] = "MAIL FOR YOU is an efficient and easy to use e-mailing software tool which will help you to define your e-mailing campaigns and e-mailing messages. It integrates all together functions to do and manage professional e-mailing campaign, such as:
-Message definition either in text or HTML format. Message integration from HTML Editors such as:
-Dreamweaver, NVU, Golive, Front Page
Recipient list definition through direct editing or imports from your contact and customer databases.
-Message customization by inserting dedicated information for any recipient like his Name, title, company, etc.";
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 = '';
}
}