var fDesc=new Array(); fDesc[0] = "SMTPSEND is an application used to send mail messages without an email client required, such as Microsoft Outlook or Lotus Notes. An SMTP mail server must reside on your local network to process the email message sent out by SMTPSEND. Use fully qualified SMTP email addresses such as johndoe@email.com, not resolved names. Include a subject, body, up to one attachment, and an unlimited amount of email recipients. SMTPSEND can also be run silently from the command line by passing it in parameters. A great tool for corporate system administration teams, allowing email messages to be sent from the servers without the overhead of a Mail Client. Also works great in conjunction with a scheduled service or agent alert to automatically send out email messages."; 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 = ''; } }