//<![CDATA[

      // load the AJAX Feed API
      google.load("feeds", "1");

      function OnLoad() {

        // create a feed control
        var feedControl = new google.feeds.FeedControl();

        feedControl.addFeed("http://browningrealty.blogspot.com/feeds/posts/default");
		feedControl.setNumEntries("8");
        feedControl.draw(document.getElementById("feedControl"));
      }
      google.setOnLoadCallback(OnLoad);
    //]]>
