var fDesc=new Array(); fDesc[0] = "Outlook Email Notifier is a plugin for Microsoft Outlook 2010 that displays an icon in the system tray when new email arrives. Outlook 2010 already has this feature, but it does not work for IMAP email accounts. This application works with Exchange, POP, and IMAP Outlook email accounts."; 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 = ''; } }