  google.load("feeds", "1");
  function OnLoad() {
    var feedControl = new google.feeds.FeedControl();
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/sokbo.xml", "속보");
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/politics.xml", "정치 · 북한");
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/economy.xml", "경제");
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/stock.xml", "증권");
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/society.xml", "사회");  
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/province.xml", "전국");
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/international.xml", "세계");
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/culture.xml", "문화 · 생활");
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/sports.xml", "스포츠");
	feedControl.addFeed("http://www.yonhapnews.co.kr/RSS/entertainment.xml", "연예");
    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);
