var fDesc=new Array();
fDesc[0] = "Avaya Integrated Management provides a comprehensive set of applications designed to simplify system administration, provisioning and network management as well as fault and performance analysis operations. Integrated Management covers Avaya Aura Communication Manager software; Avaya servers, gateways, switches and endpoints; branch deployments; and third-party solutions from Extreme Networks, Juniper Networks and Polycom.
Main features:
- Configure, monitor and optimize the performance of servers, gateways and endpoints.
- Monitor voice over IP traffic.
- Control network quality.
- Centrally provision and manage thousands of branch locations.";
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 = '';
}
}