var fDesc=new Array();
fDesc[0] = "ImageNow Mail Agent enables you to automatically capture e-mail messages and attachments, importing them directly into ImageNow.
With built-in flexibility, you can store and index e-mail based on a message's subject, or other e-mail property, forward them wherever they're needed and send an e-mail receipt confirmation.
Regardless of industry, department or role, e-mail storage and management is crucial to your success. ImageNow Mail Agent helps you get more from this high-volume, valuable correspondence.
Main features:
-Reduce manual scanning by automatically importing e-mail and attachments
-Secure long-term e-mail storage, preventing deletion or alteration
-Use e-mail properties (from, to, subject, simple message content) for automatic indexing
-Send automatic replies and automatically forward captured e-mail
-Exclude certain attachment types to protect your system";
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 = '';
}
}