var fDesc=new Array();
fDesc[0] = "SendGuard description :
Forgotten to attach an important file to an email
Had an email blocked because it got sent out with an empty subject
Accidentally clicked Reply All (instead of Reply) on an email and informed too many people of confidential information
Accidentally clicked Reply (instead of Reply All) on an email and then wasted your precious time going back to keep everyone in the loop";
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 = '';
}
}