var fDesc=new Array(); fDesc[0] = "NoReplyAll Outlook Add-In is a program that adds a few buttons to the Outlook ribbon to prevent people from replying to all the recipients of your message or forwarding it. It includes a check for common email errors, such as omitting attachments or subject lines. It uses a facility built into Outlook and Exchange that is more lightweight than information-rights management but is not exposed in the existing UI."; 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 = ''; } }