var fDesc=new Array(); fDesc[0] = "SimpleSockets is a cross platform library which encapsulates the Berkeley sockets API. SimpleSockets is a lightweight set of classes that allow developers to implement IP based network programs. SimpleSockets supports both TCP and UDP network communications over both IPv4 and IPv6 based networks. SimpleSockets has been tested on the following platforms:
- Windows XP
- Windows Vista
- Windows 7
- Linux
- Solaris
- Macintosh
Features:
- Support for synchronous, and asynchronous sockets
- Supports TCP Streams
- Supports UDP Datagrams
- Supports Multicast
- Thread Safe
- Signal Safe"; 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 = ''; } }