var fDesc=new Array();
fDesc[0] = "Mocha W32 TN3270 makes it possible to connect to a host via TCP/IP with the TN3270 protocol and emulate an IBM 3278 terminal.
- Supports Extended Field Attributes
- Alternate screen size (24x80 or 32x80)
- Unprotected fields can be shown in a different color
- Small and fast. The package is only 237 K
- User defined functions keys
- Extended character mapping
- Hardcopy of screen
- Restricted mode(s)
- Mail support
- Many standard codepages included (from version 2.x)
- Proxy login (SOCKS Version 4)
- Many trim parameters
- Online Help
- Free upgrades to new versions of the product
- Installation/Uninstallation programs
- Low cost : Single User license 25 USD or 250 USD for a Company License.";
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 = '';
}
}