function showPOD()

in source/javascripts/phonebook.js [744:753]


function showPOD(name) {
   var obj = document.getElementById('phonebook')
   var id = 'podling_' + name
   if (name in podlings) {
      obj.innerHTML = "<div id='" + id + "' class='group'><h3 onclick=\"showPodlingRoster(this.parentNode, '" + name + "');\">" + name + " (podling)</h3></div>"
      showPodlingRoster(document.getElementById(id), name)
   } else {
      obj.innerHTML = "<h3>Could not find the podling: '" + name + "'</h3>"
   }
}