var fDesc=new Array(); fDesc[0] = "SMTP Diagnostics is a program that assists with troubleshooting problems that can occur with outgoing mail (SMTP). You can send a test message, with or without attachment(s), and view the protocol messages exchanged between your computer and the mail server. This information can help you analyze problems or can be passed on to technical support personnel."; 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 = ''; } }