var fDesc=new Array(); fDesc[0] = "zeroconfServiceBrowser is a tool to enumerate network-services which are advertised using Apple Bonjour / multicast-DNS. In the top list, you will find the names of the services found on your local network. If you click on an entry, the different computers/devices offering this service will be listed on the bottom left. If you click on one of the service-instances, you will find detailed information about this instance, like the IP-address and the port-number where this service can be reached."; 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 = ''; } }