var fDesc=new Array();
fDesc[0] = "Foglight Network Management System (NMS) is an enterprise ready network performance monitoring and configuration management solution. It installs in less than 15 minutes and auto-discovers key metrics for network resources, including hardware, operating systems, virtual infrastructure, databases, middleware, applications, and services allowing you to:
- Reduce the wasted time and chaos associated with sudden network issues
- Mitigate the risk of downtime
- Reduce mean-time-to-resolution of network incidents
- Provide admin and management level visibility
- Manage up to 100 network devices for free";
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 = '';
}
}