// JavaScript Document

    function pipeCallback(obj)
    {
      document.write("<div><h3>Public Meeting Agendas</h3>");
      var x;
      for (x = 0; x < obj.count ; x++)
      {
        var buildstring = "<b><a href=" + obj.value.items[x].link + ">" + obj.value.items[x].title + 

"</a></b>.<br /> <span id=desc>" + obj.value.items[x].description + "</span><br />";

        document.write(buildstring);
        buildstring = null;
      }

      document.write("</div>");
    }

