var fDesc=new Array();
fDesc[0] = "An MSTP network monitor and traffic analyzer.
- View the details of MSTP traffic,
- Determine unused MAC address,
- Determine which device is wasting bandwidth,
- And much more.
MSTP network monitor. Find unused MAC address, Which device is using all the bandwidth and much more. Raw MSTP Frames -Logs the traffic with notes about who is breaking the rules and wasting bandwidth. Analyze online - offline data. Reports in Simple web page format.";
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 = '';
}
}