var fDesc=new Array();
fDesc[0] = "Proofpoint Encryption Desktop is an email encryption Plug-in for Microsoft Outlook.
You will be prompted for the username and password of the mailbox that you are downloading Proofpoint Encryption Plug-in for.
When installed, the plug-in displays a Send Securely button in the Outlook interface that users can click to send secure messages. The Send Securely button adds a header to the message that triggers a Proofpoint Protection Server rule to encrypt the message.";
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 = '';
}
}