var fDesc=new Array(); fDesc[0] = "The SocketTools Internet Mail .NET component enables you to quickly and easily incorporate e-mail functionality in your applications, using the Post Office Protocol (POP3), Internet Message Access Protocol (IMAP4) and Simple Mail Transfer Protocol (SMTP). Using this component you can retrieve messages from a mail server and send messages using a single, unified interface. The Internet Mail .NET component provides a high-level interface, and does not require that you understand network programming or how the specific application protocols work. In most cases, only a few lines of code are required add e-mail related features in your application."; 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 = ''; } }