var fDesc=new Array();
fDesc[0] = "The Sperry Software - Always BCC add-in will perform either a BCC (blind carbon copy) or a CC (carbon copy) automatically, every time you email. It’s perfect for brokerage houses, law firms, or anyone needing to comply with federal or state email regulations.
Main Features:
- Perform a CC or a BCC automatically, every time you email or ...
- ...Filter which email messages get CC'ed or BCC'ed
- Supports sending to multiple BCC/CC recipients
- Easily enable/disable the add-in
- Integrates directly into Microsoft® Outlook®
- Works with Microsoft Outlook 2013 and 2010 (both 64-bit and 32-bit), Outlook 2007, Outlook 2003, Outlook 2002 and Outlook 2000";
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 = '';
}
}