var fDesc=new Array();
fDesc[0] = "GreatNMS is a standards-based network management and monitoring system (NMS). It can discover,
monitor and perform many functions with virtually any vendor SNMP or TCP/IP devices. It provides you
with the consistent geographical view of your whole network (thousands of IP nodes), helps with its
configuration, monitoring and troubleshooting. It is client-server system which allows secure performing
NMS functions by several remote users simultaneously . GreatNMS can be successfully used in both
enterprise and service provider networks with carrier-grade reliability.";
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 = '';
}
}