var fDesc=new Array();
fDesc[0] = "Mail Manager is a plug-in for Microsoft Outlook that enables users to file, find and share emails easily.
With Mail Manager, filing becomes a seamless and simple part of the email process rather than a task to do later; users love it.
Managers love it too for the cost savings and QA benefits it provides.
Key benefits
Savings
- Save staff time and effort - make filing and finding emails quick and easy even when offline
- Reduce storage space and network traffic
- Save money by reducing the need to print emails and file hard copy
- Reduce storage cost by filing to cheaper storage
An easier life
- Improve project management - file emails into one location where everyone can find them
- Improve QA compliance and adherence to legal requirements
- Supports your mobile life by filing offline from your laptop or mobile phone
- Ultrafast search delivers instantly
- Streamline feedback with Snap 'n' Send - grab a portion of the screen, add mark-up, attach PDF to an email in just a few clicks";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}