if(typeof(MovableTypeJsonFeed) == 'undefined') MovableTypeJsonFeed = new Array(); 
MovableTypeJsonFeed["http://www.landscape.co.jp/seminar/"] = {
 "title": "イベント・セミナー",
 "link": "http://www.landscape.co.jp/seminar/",
 "id": "tag:www.landscape.co.jp,2006:/seminar//5",
 "updated": "2010-03-04T05:33:32Z",
 
 "generator": "http://www.sixapart.com/movabletype/",
 "entry": [

          {
              "title": "≪追加開催≫【B2Bマーケティング】今、注目のSMB市場攻略には従来のやり方は通用しない！～セールスサイクルを効率化し、100万社市場の森に分け入る",
              "link": "http://www.landscape.co.jp/seminar/20100316_699.html",
              "id": "tag:www.landscape.co.jp,2010:/seminar//5.699",
              "summary": "　SMB市場という言葉をご存知でしょうか。SMBとはSmall and Medi...",
              "author": "landscape",
              
              "published": "2010-03-16T00:54:59Z",
              "updated": "2010-03-04T14:33:32Z",
              "time": "20100316"
            }, 

          {
              "title": "≪満員御礼≫【B2Bマーケティング】今、注目のSMB市場攻略には従来のやり方は通用しない！～セールスサイクルを効率化し、100万社市場の森に分け入る",
              "link": "http://www.landscape.co.jp/seminar/20100311_698.html",
              "id": "tag:www.landscape.co.jp,2010:/seminar//5.698",
              "summary": "　SMB市場という言葉をご存知でしょうか。SMBとはSmall and Medi...",
              "author": "landscape",
              
              "published": "2010-03-11T04:48:22Z",
              "updated": "2010-03-04T14:37:05Z",
              "time": "20100311"
            }, 

          {
              "title": "【BtoC販促】ゼロからの富裕客開拓法お教えします！",
              "link": "http://www.landscape.co.jp/seminar/20100304_697.html",
              "id": "tag:www.landscape.co.jp,2010:/seminar//5.697",
              "summary": " 成功する富裕客獲得法お教えします！ 顧客基盤ゼロでもダイレクトに成功する秘訣が...",
              "author": "landscape",
              
              "published": "2010-03-04T02:13:15Z",
              "updated": "2010-02-23T14:14:05Z",
              "time": "20100304"
            }, 

          {
              "title": "【BtoC証券向け】3月、4月で成果を出す！　ライバルが成果を上げているやり方教えます。",
              "link": "http://www.landscape.co.jp/seminar/20100223_695.html",
              "id": "tag:www.landscape.co.jp,2010:/seminar//5.695",
              "summary": "&nbsp; 　ライバル企業が成功している個人投資家の新規獲得・休眠客からの取引...",
              "author": "landscape",
              
              "published": "2010-02-23T02:55:40Z",
              "updated": "2010-02-16T11:25:01Z",
              "time": "20100223"
            }  

         ]
};
if(typeof(MovableTypeJsonCallback) != 'undefined'){
   MovableTypeJsonCallback(MovableTypeJsonFeed["http://www.landscape.co.jp/seminar/"])
} 


  function MovableTypeJsonCallback(data) {
  
    var content = document.getElementById("matome2");
  
    var mydiv  = document.createElement("ul");
    mydiv.setAttribute("class", "section updates");
  
    var myD = new Date();
    var today = ( (myD.getYear() < 2000) ? myD.getYear()+1900 : myD.getYear() ) * 10000
                + ( myD.getMonth()+1 ) * 100 + myD.getDate()
                + ( ( myD.getHours() < 18 ) ? 0 : 1);
  
    for ( var i=0, entry  ; entry = data.entry[i]; i++){
      if( Number(entry.time) >= today){
        var myli  = document.createElement("li");
        myli.innerHTML = "<span>"
	  + entry.published.substr(5,2) + "/" + entry.published.substr(8,2) + "</span> "
	  + "<a href='" + entry.link + "'>" + entry.title.substr(0,28)
          + "…" + "</a>";
        mydiv.appendChild(myli);
      }
    }
    content.appendChild(mydiv);
  }