var fDesc=new Array();
fDesc[2] = "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[5] = ", monitor and archive email, block email between selected users. Comprehensive rule system for total control";
fDesc[8] = ", Incredimail and others. No Annual Subscriptions, Self Learning Filters, SmartLock virus protection, unlimited accounts and profiles.";
fDesc[9] = ", Out of Office, Vacation, custom Status or Calendar Free/Busy time). Allow response to selected Contacts or Distribution lists.";
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 = '...';
}
}