var fDesc=new Array();
fDesc[1] = "email large attachments, IM a folder, or publish your downloadable videos to the Web? Maybe you'd just like to watch full-screen HD Internet TV. Meet Pando.";
fDesc[2] = "text, HTML, attachments, and subject rotation. Includes a free download.";
fDesc[3] = "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[4] = "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[5] = "an effective Internet connection. Simple to download and easy-to-use, this utility can be mastered by novice users too.";
fDesc[6] = "easy! Import recipients from databases, Excel, text files or enter them manually. You can store email templates in both HTML and text.";
fDesc[7] = "network administrators and allows to wake up computers from standby, hibernate or shutdown modes and do maintenance work, run software patches and make updates.";
fDesc[8] = "directly calling your mobile provider. SMSCommand is the successor of SMSC-Sender.";
fDesc[9] = ", targeted marketing, and keeping in touch with clients";
fDesc[10] = ", and keeping in touch with clients.";
fDesc[11] = "message editor. Attachment, Html/Text message support. Import large address lists with no program.";
fDesc[12] = "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[13] = "really gets the attention of the recipient to see their name in the subject and in the body of the email.";
fDesc[14] = "a full range of options through two interfaces: the first is a standalone application, and the second one is an optional toolbar for Internet Explorer. It is compatible with Windows XP and Vista and Internet Explorer versions 6 and 7.";
fDesc[15] = "thousands of recipients with a click of a button. Bulk Email Sender is ideal for newsletters, targeted marketing, ...";
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 = '...';
}
}