var fDesc=new Array();
fDesc[0] = "Open Text SOCKS Client is a Windows 7 certified, state-of-the-art Windows security solution that allows you to connect to hosts across firewalls. SOCKS is an industry-standard security protocol developed to allow computers on one network to connect to hosts on another network through a proxy. Open Text SOCKS Client dynamically "socksifies" any network application, and helps users maintain the integrity of the network infrastructure.";
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 = '';
}
}