var fDesc=new Array();
fDesc[0] = "PowerTCP Sockets for .NET leverages a .NET 2.0 re-design, providing the most advanced Internet Communications components available, along with the best technical support in the industry.
Main features:
- Model-View-Controller (MVC) design means fewer resources, more flexibility, and code that is easier to maintain
- Supports .NET 2.0 features including generics, IPv6, and X509 certificates
- Secure Socket Layer (SSL) security is fully integrated";
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 = '';
}
}