var fDesc=new Array(); fDesc[0] = "A small application which is loaded as a taskbar icon. When starting it, it automatically loads Microsoft Outlook into memory. This makes sure at even if you do not have a visible instance of Microsoft Outlook running, you wil still get notifications about new mail and reminders about appointments etc."; 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 = ''; } }