var fDesc=new Array();
fDesc[0] = "Vista tn3270 is a Windows program designed to emulate IBM 3270 terminals connected to a host via IP link. If you are looking for an emulator created with mainframe programmers in mind, then give this one a try. You might find some unique features unavailable even on the highest priced commercial emulators.
Vista has features designed especially for programmers, such as built-in multiple cut and paste buffers, fully tailorable keyboard, extensive select/copy/paste functions - including SelectJCL, which can pick out dataset names, parms, and other items with a single mouse click.";
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 = '';
}
}