var fDesc=new Array(); fDesc[0] = "When unread mail is detected you are alerted via the task bar icon, and a balloon pop-up notification. You can then view the unread mail directly from the server and choose to delete individual mail you do not want to keep. This is all done before you download any mail onto your computer using your normal email client application. You can also make Check Mail play any sound (wav) file of your choosing to indicate arrival of new mail."; 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 = ''; } }