var fDesc=new Array();
fDesc[0] = "WorldMerge allows you to quickly and easily generate large numbers of personalized e-mail messages.
Features :
- Visual (WYSIWYG) editing of HTML messages using the included HTML Editor Plug-In
- Connects directly to many popular mailing list and database formats.
- Project Wizard gives you the power to create new mailing projects quickly and easily
- No limit on database fields
- Unlimited mailing projects";
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 = '';
}
}