var fDesc=new Array();
fDesc[0] = "The Wyse Telnet and Serial Terminal Emulator provides a comprehensive emulation of the WY-50tm, WY-50 tm and WY-60tm series of terminals.
-Locally and remotely programmable keyboard.
-Support for 7-bit National Replacement Characters (NRC).
-Protect and write-protect modes.
-24/25/42/43 line, and 80/132 column display modes, including Economy 80-column(TM) mode.
-Character, line and page attributes.
-Multiple, sizeable page modes and full split-screen support.
-Status Line and programmable key labels.
-Complete editing features, including tabs.
-Full character, line, column and rectangle clear/fill functions.
-Line locking, answerback, monitor mode, and line drawing.
-Remotely switchable emulation.";
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 = '';
}
}