var fDesc=new Array();
fDesc[0] = "KINSole is a free, open source Win32 implementation of client side of the telnet protocol, described in detail in the RFC854 and related RFCs.
Main features:
- Does support telnet protocol as described in RFC854
- Supports vt102 terminal emulation
- Uses Win32 console API and, therefore, can be run both windowed and in fullscreen mode
- Implements RFC855, RFC857, RFC1091, RFC1073, RFC1572 and, probably, some others
- Open source for those willing to add missing features, fix bugs and examine code for potential flaws and fun";
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 = '';
}
}