var fDesc=new Array();
fDesc[0] = "FV Attachmate EXTRA! X-treme supports for modern operating environments, including Windows 7, Windows Server 2008 R2, Citrix XenApp, Microsoft App-V, and VMware.
Features:
-Perform secure file transfers that leverage FIPS 140-2-validated SSH and SSL/TLS crypto modules;
-Protect sensitive data with encryption of EXTRA! Basic macros;
-Connect to Tandem (HP NonStop) hosts with optional EXTRA! 6530 Client Option software.";
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 = '';
}
}