var fDesc=new Array(); fDesc[0] = "Email notification program that lives in your Icon Tray, notifies you of how many messages are wating on your email server by playing the media file of your choice (.wav, .mid, .avi, etc.) Upon the receipt of new email, eNotify plays your media file and gives prompts you with the option to start your favorite email viewer if you choose. The icon in the System Tray will flash to indicate that you have unread mail. eNotify is a notification program not a reader."; 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 = ''; } }