var fDesc=new Array();
fDesc[0] = "Prompts you when you are going to reply to everyone - preventing you from sending out potentially confidential information you may not want to share
Saves time by preventing Outlook from including your name and email address in a reply to all message
Prompts you before sending with a confirmation message if you were BCC'ed on the message to prevent you from inadvertently "spilling the beans" that you were BCC'ed on that message
Optional "lock down mode" to prevent changes (for volume/corporate customers only)";
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 = '';
}
}