var fDesc=new Array();
fDesc[0] = "The Mediatrix® Unit Manager Network is a user-friendly element management system designed to facilitate the simple and remote deployment, configuration and provisioning of Mediatrix VoIP access devices and VoIP gateways.
Main features:
- Detection of the state of each Mediatrix unit (e.g. power on/off)
- Automatic detection of new Mediatrix units connected to the administrative domain
- Automatic list update with installation of new Mediatrix units
- Real-time graphical presentation of actual configuration
- Tracking of all configuration options of the Mediatrix units on the network
- Control of configuration parameters of all Mediatrix units within the same network";
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 = '';
}
}