var fDesc=new Array();
fDesc[1] = "easy! Import recipients from databases, Excel, text files or enter them manually. You can store email templates in both HTML and text.";
fDesc[2] = "messages, ISO-8859 full support, multiple accounts with authentication and recipients management.";
fDesc[3] = "friends by creating and sending customized e-mails. The latest version of our bulk mailer has added a FREE html email editor and 10+ templates.";
fDesc[4] = "server, mailing lists, databases, plugins, open API, ActiveX/COM interfaces, Socks5, more.";
fDesc[5] = "for each recipient. The final recipient will see only his/her name and address in the \"To\" field.";
fDesc[6] = "Emailer is easy to use and provides you with range of features. It includes built-in modules for collecting email addressees from various web pages and verifying valid email address.";
fDesc[7] = "companies or shareware authors organize and manage large volumes of customer email addresses and contact them by email in simple steps.";
fDesc[8] = "recipient will see only his\her address in the \"To\" field. The macros can be replaced with the personal data.";
fDesc[9] = "Broadcaster is a program to email your own created messages, whether for business or personal use, to a list of email addresses.";
fDesc[11] = ", subscribers and friends. You are also be able to manage mailing lists with our handy tool.";
fDesc[12] = "setting the tool!";
fDesc[14] = "email and email marketing are some of the most efficient marketing methods available today - if used right.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}