var fDesc=new Array();
fDesc[1] = "Microsoft PowerPoint and Word documents by up to 98% without reducing the quality or requiring any decompressing tools. The tool has add-ons for Microsoft Word and PowerPoint and a beautiful search window for batch compressing.";
fDesc[2] = "making it faster. Easy-to-use. Plenty of features. Does the same as the concurrents do, but for free.";
fDesc[3] = ", copied or moved to any folder. Works as an add-in for Microsoft Outlook 2000-2007.";
fDesc[4] = ", either automatically on incoming emails or on complete folders. Extract attachments - Export emails to disk - Copy/Move emails to another folder";
fDesc[5] = "Microsoft Outlookâs easy interface lets you quickly and easily delete duplicates in your Microsoft Outlook Email, Contacts, Calendar and Tasks folders based on criterion specified by Anti-Dupe for Microsoft Outlook. Although the criterion that Anti-Dupe for Outlook uses to find duplicate records in Outlook folders is not customizable, you can specify in which Outlook folders and sub-folders that Anti-Dupe for Outlook will scan and delete duplicate records. Remove duplicate emails. Remove duplicate contacts. Remove duplicate appointments. Remove duplicate tasks.";
fDesc[6] = "easily schedule conference calls exactly the way you set up meetings right from your email client. You can use the same menus and calendar tools, send invitations, view your account information, manage your preferences, and also create recurring conferences using all your existing contacts";
fDesc[7] = "Allows you to insert data fields into subject fields, add attachments, send emails in GIF, HTML, RTF and text formats.";
fDesc[8] = "contacts aren't only removed but merged together taking the best data from each version into one new contact. And: You can undo everything.";
fDesc[9] = "you reply to a message and/or send a new message. This will help you avoid losing addresses of people you correspond with.";
fDesc[10] = "correct folders in a matter of seconds. Saves you time, helps you stay organized.";
fDesc[11] = "a message containing a form. E-mail addresses in your Outlook can be verified with just a few mouse clicks";
fDesc[12] = "every outgoing message. With that you can ensure that for example every sent message goes to an archive.";
fDesc[13] = "messages in Microsoft Outlook folders. Works as an add-in for Microsoft Outlook 2000, 2002/XP, 2003 and 2007.";
fDesc[14] = "\"dangerous\" for their further blocking, and which - \"secure\" for granting access to them. Compatible with Outlook 2000, 2002/XP, 2003, 2007. Free.";
fDesc[15] = "Ability. Quarantined e-mails are stored in a separate SPAM folder. POP3, IMAP, HTTP and MS Exchange support.";
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 = '...';
}
}