var fDesc=new Array(); fDesc[0] = "Cisco Switch Health Monitor is a piece of software designed to offer you detailed informations about the status of your switch. It can find all half-duplex ports, RAM/CPU utilization, all ports with high error levels, the port where a device with a specific MAC address is connected, etc."; 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 = ''; } }