var fDesc=new Array();
fDesc[0] = "Campaign Enterprise is the world’s most powerful permission email marketing system.
Main features:
- Powerful permission email marketing automation features puts you in control of your email campaigns.
- Supports unlimited number of lists, unlimited list size, unlimited number of databases, and unlimited mailings.
- Tracks and reports email opens and click-throughs, so you know who's active.
- Unlimited message personalization.
- Multi-user functionality allows an entire team to collaborate on email campaigns.";
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 = '';
}
}