var fDesc=new Array(); fDesc[0] = "CDC Notifier is a simple tool designed to notify whenever a new notice is put up in CDC Noticeboard. The program resides in the system tray and displays popup notifications whenever CDC Noticeboard receives a new notice. CDC Notifier provides some basic features like playing a sound when a notification is received, open the notice directly from notification and more."; 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 = ''; } }