var fDesc=new Array();
fDesc[1] = "two game modes: play Campaign and play Free Mode with many levels. You have to satisfy the customers by listening to their needs and adding things to improve the store environment. You can try the game with the trial version for only 60 minutes";
fDesc[2] = "engine which is compatible with most of the SMTP mail servers. It supports authentication systems like SMTP/ESMTP, SSL, StartTLS, and Pop before SMTP and IIS directory mode.";
fDesc[3] = "undeliverable messages? Are you looking for a professional, easy-to-use all-in-one solution? Group Mail software for Windows may be the answer you’re looking for.";
fDesc[4] = "contacts, manageemail campaigns, send attractive HTML emails, newsletters, coupons to an unlimited number of recipients.";
fDesc[6] = "why. To determine whether an e-mail is spam most spam filters examine a number of different rules: such as content, length, percentage of text, use of images, number of recipients, headers, sender.";
fDesc[7] = "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[9] = "information from your email messages and create user defined text documents, that can be imported by other program";
fDesc[10] = "is very easy to use. For sending flyers, brochures, newsletter and others this is a perfect tool.";
fDesc[11] = "It supports multiple SMTP accounts, built-in SMTP server, multi-threading, bounce handling, EXCEL, Access, text database support and more.";
fDesc[12] = ", Marketing Campaigns, Opportunities, Quotations, Sales Orders, Invoicing, Purchase Orders, Links to Sage Line 50 andQuickbooks, Diary, Email Centre plus ..";
fDesc[13] = "newsletters to increase your profits! Aella provides everything you need to get up and running within minutes of starting the application.";
fDesc[14] = "you to embed questionnaires and get customers' feedback immediately!";
fDesc[15] = "of catalog presentations and digital distribution of interactive digital catalog presentations.";
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 = '...';
}
}