var fDesc=new Array();
fDesc[1] = "accounts, such as Hotmail and Yahoo Mail. This program adds cool features for customizing your e-mail messages by adding stationery, emoticons and even voice messages.";
fDesc[2] = "greeting cards in just a few minutes. The program includes hundred of pre- defined professional templates to help you create beautiful greeting cards in a snap that you can email or print directly from the program.";
fDesc[3] = "(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[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] = "recipient will see only his\her address in the \"To\" field. The macros can be replaced with the personal data.";
fDesc[8] = ", subject tracking IDs, reply counters, text templates, email notes, easy mail merge sessions and many more !";
fDesc[11] = "to 250 mail groups, multiple address support and can read messages live on your server without downloading.";
fDesc[12] = "wizard that can customize your messages and send them to your customers and friends within seconds.";
fDesc[13] = "Virtual Notifier Today!";
fDesc[14] = "newsletters to increase your profits! Aella provides everything you need to get up and running within minutes of starting the application.";
fDesc[15] = "repetitive email. Canned text, templates, Emoticons, attachments to make your professional personalized email response in just few clicks.";
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 = '...';
}
}