var fDesc=new Array();
fDesc[1] = "language experiences. It supports file uploads, email auto responses, form validation and displaying success page to the visitor upon completion of the web form.";
fDesc[3] = "complete package that offers follow-up auto responders, automated subscription handling and email merge.";
fDesc[4] = "match a certain user-defined criteria. First you have to create simple rules in relation to email content or attachments, and specify a certain response and/or attachment for that types of emails.";
fDesc[6] = "auto-response emails and SMS. Email2DB is ideal for any form-based emails such as orders, customer accounts etc.";
fDesc[7] = ", monitor and archive email, block email between selected users. Comprehensive rule system for total control";
fDesc[13] = "white rules, this spam killer will filter out all your junk email!";
fDesc[14] = "corresponding response), it will display the headers, and 4 views of the body: Text, Hex, XML, and Image.";
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 = '...';
}
}