var fDesc=new Array();
fDesc[0] = "SAM automatically sets the sender, signature, and folder for sent items based on several criteria.
- Do you often manually edit an automatically inserted signature because Outlook cannot differentiate between business contacts and your family or good friends?
- Do you want to automatically reply to certain e-mails from a specific sender address, no matter who the e-mail was sent to?
- Do you want to be asked for a specific sending account to be used before sending an e-mail?
- Would you prefer several folders for sent items, for example based on certain projects?
A strong combination: SAM's Category Rules and Category Manager. E-Mails are categorized faster, a reminder ensures that you never forget to assign a category, and actions are triggered with a single click.";
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 = '';
}
}