// load the AJAX Feed API
//google.feeds.LINK_TARGET_BLANK;
google.load("feeds", "1");


function OnLoad() {

  // create a feed control
  var feedControl = new google.feeds.FeedControl();
  feedControl.setNumEntries(2);
  feedControl.addFeed("http://escuelanauticasantalo.blogspot.com/feeds/posts/default", "");
  feedControl.draw(document.getElementById("feedControl"));
  feedControl.setLinkTarget (google.feeds.LINK_TARGET_TOP); 
}

google.setOnLoadCallback(OnLoad);

