function TypePadJsonCallback(data) {

  var content = document.getElementById("news");

  var mydl  = document.createElement("dl");
  if(navigator.userAgent.indexOf("MSIE")!=-1){
	//for IE
		mydl.setAttribute("className", "info");
	}
	else {
		mydl.setAttribute("class", "info");
	}

  for (var i=0; i < Math.min(5, data.entry.length); i++) {
    entry = data.entry[i];
    var mydt  = document.createElement("dt");
    mydt.innerHTML =
      + entry.published.substr(0,4) + "年" + entry.published.substr(5,2) + "月" + entry.published.substr(8,2) + "日";
    mydl.appendChild(mydt);
    var mydd  = document.createElement("dd");
	if(navigator.userAgent.indexOf("MSIE")!=-1){
	//for IE
		mydd.setAttribute("className", "links");
	}
	else {
		mydd.setAttribute("class", "links");
	}
    mydd.innerHTML = "<a href='"
      + entry.link + "'rel='external'>" + entry.title + "</a>";
    mydl.appendChild(mydd);
  }
  content.appendChild(mydl);
}
