var fDesc=new Array();
fDesc[0] = "Avaya Integrated Management offers a comprehensive set of network and system management solutions for converged voice and data networks that simplify the management of complex communication environments. Voice and data administration are accessed through a common web-based user interface, simplifying management and increasing productivity.
Avaya Site Administration supports administration and maintenance management of individual Avaya Media Servers and Avaya messaging platforms. Through a web-browser, administrators can manage fault and performance and perform user moves, adds, and changes. To simplify days-to-day voice system administrative tasks, Avaya Site Administration offers wizards that reduce repetitive tasks for moves, adds, and changes, finding extensions, monitoring, and a variety of other functions. A Graphically Enhanced DEFINITY Interface (GEDI) tool provides access to more advanced administrative tasks.";
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 = '';
}
}