var fDesc=new Array();
fDesc[2] = ", magazines, software boxes, and more. Its wizard-like interface will guide you through the whole creative process in just a few easy steps. The program includes 100 different templates that you can use as a basis for your designs, though you can always load your own images and add new templates.";
fDesc[3] = "It supports multiple SMTP accounts, built-in SMTP server, multi-threading, bounce handling, EXCEL, Access, text database support and more.";
fDesc[5] = "Virtual Notifier Today!";
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 = '...';
}
}