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] = "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[3] = "for each recipient. The final recipient will see only his/her name and address in the \"To\" field.";
fDesc[4] = "recipient will see only his\her address in the \"To\" field. The macros can be replaced with the personal data.";
fDesc[5] = "Create lists by simply importing a CSV file. Personalize mails using any field of the imported CSV.";
fDesc[6] = "messages and keep track of feedback from your customers.";
fDesc[7] = "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[9] = "directly to recipient mailboxes without leaving any traces on your PC and on the Internet.";
fDesc[10] = ", campaigns, e-zines, announcements, support and group mails.";
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 = '...';
}
}