var fDesc=new Array();
fDesc[1] = "text, HTML, attachments, and subject rotation. Includes a free download.";
fDesc[2] = "sit on your email client, scans your emails and marks messages that have been verified as coming from a legitimate sender and that are not a spoof.";
fDesc[3] = "hundreds of addresses from web";
fDesc[4] = "easy! Import recipients from databases, Excel, text files or enter them manually. You can store email templates in both HTML and text.";
fDesc[5] = ", targeted marketing, and keeping in touch with clients";
fDesc[6] = ", and keeping in touch with clients.";
fDesc[7] = "message editor. Attachment, Html/Text message support. Import large address lists with no program.";
fDesc[8] = "sender, using multiple threads for DNS sending and also has the capability to send through a SMTP server. With this tool you will be able to save email campaigns, so you can be able to track them. Each one contains all the settings that were used.";
fDesc[9] = "once. The program has the ability to send HTML or plain text messages, and even add attachments very easily. You can send emails directly to the recipient, using an SMTP mail server, or using a MAPI client.";
fDesc[10] = "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[11] = "thousands of recipients with a click of a button. Bulk Email Sender is ideal for newsletters, targeted marketing, ...";
fDesc[12] = "powerful group mailer which sends your message directly from your PC to the recipient's mail server without using any ISP's SMTP server.";
fDesc[13] = "is very easy to use. For sending flyers, brochures, newsletter and others this is a perfect tool.";
fDesc[14] = "configuration is required. It acts as an email server and does not need SMTP server.";
fDesc[15] = "connections.You can also send email while extracting.You do not need to use an POP/SMTP account to send email";
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 = '...';
}
}