var fDesc=new Array(); fDesc[0] = "FrameFlow SNMP Browser is a graphical MIB browser that allows you to view SNMP values on your routers, switches, servers and other devices that support the SNMP protocol. You can see all the SNMP values supported by a device in a list or you can browse them in a tree format. The dashboard provides a central location were you can save and view SNMP values that you frequently view. You can even mix and match values from different hosts."; 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 = ''; } }