var fDesc=new Array();
fDesc[0] = "Selteco Newsletter Sender makes it possible for you to manage your database of e-mail addresses so you can send newsletters and special offers to existing customers or members.
By sending regular communications, you will:
Increase Traffic and sales by giving your customers a reason to return to your Web site or business.
Build strong relationships by communicating with your customers on an ongoing basis.";
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 = '';
}
}