var fDesc=new Array(); fDesc[0] = "WeOnlyDo! wodMailer is a sample application that works as small mailer daemon.
wodMailer is VB app that functions as SMTP/POP3 server. It allows you to define users who can receive email (through SMTP server) and read it using their favorite mail client application (through POP3 server).
You can see how easy it is to design application that has mail capabilities - 90% of the code inside deals with GUI and design, only 10% deals with actual message processing, because required functionality is provided by our components."; 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 = ''; } }