var fDesc=new Array();
fDesc[1] = "server, or optionally the built-in SMTP engine. You can view the status of all emails sent, and generate a report that includes failed or successful deliveries.";
fDesc[2] = "easy! Import recipients from databases, Excel, text files or enter them manually. You can store email templates in both HTML and text.";
fDesc[3] = "messages, ISO-8859 full support, multiple accounts with authentication and recipients management.";
fDesc[4] = "computer to recipient mailboxes. Along with a mass mailer the program can be used as a relay server for sending newslette";
fDesc[5] = "(including Access and Excel) for sending emails with conditional content, HTML formatting, or attachments. The use of TLS/SSL encryption allows the User to operate on more mail servers and its Auto Configuration facility enables a simplified setup process.";
fDesc[6] = "without troubles.";
fDesc[7] = "database or text file. It can also process incoming email such as bounce-backs, sign-ups, and opt-outs.";
fDesc[8] = "server, mailing lists, databases, plugins, open API, ActiveX/COM interfaces, Socks5, more.";
fDesc[9] = "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[10] = "program allows you to organize and fully automate all E-Mail marketing tasks.";
fDesc[11] = "Broadcaster is a program to email your own created messages, whether for business or personal use, to a list of email addresses.";
fDesc[12] = "Create lists by simply importing a CSV file. Personalize mails using any field of the imported CSV.";
fDesc[13] = "processing";
fDesc[14] = "setting the tool!";
fDesc[15] = ", have thedisadvantage of looking like bulk mails. If you wantto design your mass mails more personal, for examplewith individual openings, names, addres...";
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 = '...';
}
}