var fDesc=new Array(); fDesc[0] = "SwitchWatch is an application that will allow you to find unused ethernet ports and report the port usage on Cisco switches, allowing you to tidy up all those cables cluttering your patch panels that haven’t been used for months, as well as give you other trouble shooting information.
Its all quite simple really. You give the application details (ip, user name and password) of your switches, and then what details you want to report on (idle time, errors etc.) . It will then go and query your switch(s) and give you the information back in a set of easy to read reports."; 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 = ''; } }