var fDesc=new Array(); fDesc[0] = "If you use Microsoft Outlook and don't like the duplicate email addresses that popup when you select the "To:" (in the "Select Names" window), this add-in is for you. It will change all fax numbers for a contact to have a prepended "Fax:" before the number. This has the effect of preventing Outlook from recognizing it as a valid address. This way, when you select "To:" and get the Select Names dialog box, you will see only one email addresses listed.

You can run this add-in against your default Contacts folder or against an Exchange public folder to keep everyone else from seeing the fax address listed as well. It works with any folder that has Outlook contacts contained within it, including Business Contact Manager."; 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 = ''; } }