var fDesc=new Array(); fDesc[0] = "Internet Pack is a lightweight and easy to use TCP/IP framework built on top of the .NET Socket library.

It forms the foundation of network access in the RemObjects SDK and Data Abstract for .NET, but it also provides general connectivity options usable in any .NET networking application, be it network clients or servers.

Internet Pack provides a range of ready-to-use client and server implementations for common network protocols like HTTP, FTP or SMTP, while at the same time providing easily extendable base classes that allow developers to implement their own (be it custom or standard) protocols, as needed."; 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 = ''; } }