var fDesc=new Array();
fDesc[0] = "The WinClient allows you to manage all the CN8000 servers.
The CN8000 is a control unit that provides "over-IP" capability to KVM switches that do not have built-in over-IP functionality. It allows operators to monitor and access their computers from remote locations using a browser-based Windows Client or Java Applet, or with AP Windows and Java application programs.";
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 = '';
}
}