// JavaScript Document
    google.load("feeds", "1");
    function OnLoadLinkBlog() {
//    function initialize() {
        var feedControl = new google.feeds.FeedControl();
        feedControl.setNumEntries(3) // number of feeds to display
        feedControl.addFeed("http://gtbpain.com/news/feed/", "GTBPain News");
        feedControl.draw(document.getElementById("feedControl"));
      }
      google.setOnLoadCallback(OnLoadLinkBlog);

