var fDesc=new Array(); fDesc[0] = "The Mock SMTP Server is a simple email server that really does nothing. Well, it does display each email message it receives in the application window, but that's it.

This server/application is written to test applications that send email. The only configuration you may need to make is to allow the Mock SMTP Server access through your firewall program. This program will not store or relay email. Only the minimum requirements of RFC 5321 are implemented."; 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 = ''; } }