var fDesc=new Array();
fDesc[0] = "KpyM Telnet/SSH Server (KTS) is a free telnet and SSH server for Windows. KTS runs as a service and provides access to the host computer via the telnet or SSH protocol. Supports character graphics (applications like edit.com) and colours and uses Windows identification mechanism.";
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 = '';
}
}