var fDesc=new Array();
fDesc[0] = "Nexus Terminal is a telnet (SSL/TLS/SSH) terminal (3270/5250/VT/ANSI) emulator. Included a printer (LPD/3287/3212) emulator and a FTP (FTPS/SFTP) client. More than a hundred script functions, recording, rule line, hotspots, full screen and color, font and keyboard configuration.";
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 = '';
}
}