var fDesc=new Array();
fDesc[0] = "JSCAPE MFT Server Plugin for Outlook can be used in combination with a compatible Outlook email client and JSCAPE MFT Server to perform ad-hoc email transfers.
-Avoid bounced emails due to large file attachments or strict firewall rules at the email server.
-Avoid clogging recipients inbox with large files allowing user to download files at their leisure.
-Email multiple files with ease.
-Receive optional notification when recipient picks up files.
-Streamline document collaboration both internally and with customers.
-Restrict access to content after a given period of time.
-Email files to users without having to create a user account on the server.";
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 = '';
}
}