var fDesc=new Array();
fDesc[0] = "Rogue Wave® HostAccess offers a suite of terminal emulation products that provide Windows™ users with secure access to legacy, host-based applications. It also has the ability to enhance the interface of existing applications with toolbars, mouse support, push buttons, combo boxes, check boxes, radio buttons, ActiveX™ controls, COM objects, and includes the powerful AutoGUI feature.
HostAccess® offers a suite of terminal emulation products that provide Windows™ users secure access to legacy, host-based applications. It also gives the ability to enhance the interface of existing applications with toolbars, mouse support, push buttons, combo boxes, check boxes, radio buttons, ActiveX™ controls, COM objects, and includes the powerful AutoGUI feature. The benefits of using HostAccess for terminal emulation include:
* Increased user productivity by providing the ability to perform multiple tasks
* Standardization on one terminal emulation solution
* Point-and-click report production and host data integration with Windows™ applications
* Multiple concurrent connections within one integrated environment
* Reduced software administration time and costs";
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 = '';
}
}