var fDesc=new Array();
fDesc[0] = "Remove attached files from Outlookâs incoming messages and save them to your hard disk. Extracted attachments are replaced in the incoming message with a link to the file storage. Automatically compress files attached in Outlook using ZIP both for incoming and outgoing messages. Create self-extracting archives and password-protected archives. Take under control and manage the list of attachment types, blocked by Outlook security.";
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 = '';
}
}