﻿      google.load("feeds", "1");
      function OnLoad() {
        // FeedControlのインスタンス作成
        var feedControl = new google.feeds.FeedControl();
        //FeedControlに読込ませる、第一引数はURL、第二引数がラベル
        feedControl.addFeed("http://373.fwgp.net/atom.xml", "３７３＠FWGP日記");
        feedControl.addFeed("http://murata.fwgp.net/atom.xml", "murata＠FWGP日記");
        
        feedControl.setNumEntries(2)
        
        //feedControlに書き込み
        feedControl.draw(document.getElementById("feedControl"));
      }
      //読込まれたときにOnLoadを実行
      google.setOnLoadCallback(OnLoad);

