var fDesc=new Array();
fDesc[0] = "Add-in for Microsoft Outlook is an Outlook add-on that allows you to protect your documents. You may also need administrator privileges on your computer if the Microsoft .NET 4 framework is not yet installed. Using your existing email account, access your secure email from virtually anywhere. This add-in for Microsoft Outlook works in conjunction with your existing email.";
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 = '';
}
}