  google.load("feeds", "1");
  function OnLoad() {
    var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed("http://news.google.com/news?ned=us&hl=en&topic=po&output=rss", "Most Popular");
	feedControl.addFeed("http://news.google.com/news?cf=all&ned=us&hl=en&topic=h&num=3&output=rss", "Top Stories");
	feedControl.addFeed("http://news.google.com/news?ned=us&hl=en&topic=w&output=rss", "World");  
    feedControl.addFeed("http://news.google.com/news?ned=us&hl=en&topic=n&output=rss", "Nation");
	feedControl.addFeed("http://news.google.com/news?ned=us&hl=en&topic=b&output=rss", "Business");
	feedControl.addFeed("http://news.google.com/news?ned=us&hl=en&topic=t&output=rss", "Sci/Tech");
	feedControl.addFeed("http://news.google.com/news?ned=us&hl=en&topic=e&output=rss", "Entertainment");
	feedControl.addFeed("http://news.google.com/news?ned=us&hl=en&topic=s&output=rss", "Sports");
	feedControl.addFeed("http://news.google.com/news?ned=us&hl=en&topic=m&output=rss", "Health");
	feedControl.addFeed("http://news.google.com/news?ned=us&hl=en&topic=ir&output=rss", "Spotlight");
    feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
    var i = document.list_num.num.options.selectedIndex;
    feedControl.setNumEntries(document.list_num.num.options[i].text);
    feedControl.draw(document.getElementById("feedControl"),
	{drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED});
  }
  google.setOnLoadCallback(OnLoad);
