google.load("feeds", "1"); function bbcNewsFeeds() { var feedControl = new google.feeds.FeedControl(); feedControl.setNumEntries(100); feedControl.addFeed("http://news.google.com/news?cf=all&ned=ta_in&hl=ta&topic=sn&output=rss","<strong>Sri Lanakan News</strong>"); feedControl.addFeed("http://www.bbc.co.uk/tamil/index.xml", "<strong>BBC Tamil</strong>"); feedControl.addFeed("http://feeds.feedburner.com/oneindia-thatstamil-all?format=xml","<strong>That's Tamil News</strong>"); feedControl.addFeed("http://news.google.com/news?pz=1&cf=all&ned=ta_in&hl=ta&output=rss" ,"<strong>Important Tamil News</strong>"); feedControl.draw( document.getElementById("feedControl"), { drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED }); } google.setOnLoadCallback(bbcNewsFeeds); 


