var fDesc=new Array();
fDesc[0] = "This software is under development since 1996 and has been used for easy web based terminal access in a number of network appliances. Other uses include library and old mainframe and computer access at libraries.
The library implements three different functionalities:
A telnet client for access to remote computers in an unencrypted way. Sometimes also used for accessing control ports.
An ssh client, version 1.5 for encrypted access to remote computers.
A very fast and clean VT100/ANSI terminal to display the remote computers text based screen.
The whole project is glued together by a flexible plugin system. There is gradual development going on, but there is not much news to be propagated about the project. If you have questions, contact the developers.";
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 = '';
}
}