var fDesc=new Array(); fDesc[0] = "SNMP Data Logger retrieves and logs values from SNMP agents to a database, Excel, etc. SNMP is a network management protocol based on the TCP/IP architecture. This technology is used to provide management and control over devices and applications on the network by means of management information exchange between agents located on network devices and managers located on control stations. The program allows you to receive a list of variables and their values and log them for further analysis. Depending on the values of these variables, you can generate signals and warnings."; 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 = ''; } }