// load the AJAX Feed API
//google.feeds.LINK_TARGET_BLANK;
google.load("feeds", "1");


function OnLoad() {

  // create a feed control1
  var feedControl = new google.feeds.FeedControl();
  feedControl.setNumEntries(1);
  feedControl.addFeed("http://telrocknews.blogspot.com/feeds/posts/default/-/news1", "");
  feedControl.draw(document.getElementById("feedControl1"));
  //feedControl.setLinkTarget (google.feeds.LINK_TARGET_BLANK); 
  
    // create a feed control
  var feedControl = new google.feeds.FeedControl();
  feedControl.setNumEntries(1);
  feedControl.addFeed("http://telrocknews.blogspot.com/feeds/posts/default/-/news2", "");
  feedControl.draw(document.getElementById("feedControl2"));
  
      // create a feed control
  var feedControl = new google.feeds.FeedControl();
  feedControl.setNumEntries(1);
  feedControl.addFeed("http://telrocknews.blogspot.com/feeds/posts/default/-/news3", "");
  feedControl.draw(document.getElementById("feedControl3"));
}

google.setOnLoadCallback(OnLoad);

