var fDesc=new Array();
fDesc[0] = "Move & compress file attachments to disk, outside of your mailbox file, so Outlook can load & work faster;
Identify & eliminate obsolete emails, such as out-of-office, autoresponder or mail failure notifications;
Find & delete duplicated emails;
Upload attachments to integrated file sharing servers and email the download link, instead of frustrating your contacts by sending them large file attachments by email;
Speed up Outlook by compacting your Outlook mailbox (PST) file.";
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 = '';
}
}