function togglecomments (postid) {
var whichpost = document.getElementById(postid);
  if (whichpost.className=="commentshown") {
    whichpost.className="commenthidden";
  } else {
    whichpost.className="commentshown"; 
  }
}
function checkMessageForm(f) {
  if (!f.name___.value) {
    alert("名前が入力されていません。");
    return false;
  } else if (!f.body___.value) {
    alert("メッセージが入力されていません。");
    return false;
  } else {
    alert("メッセージを受け付けました。\nありがとうございました。");
    return true;
  }
}
function addAmazonLinks() {
  var s = document.getElementsByTagName("span");
  var key = "";
  for (var i = 0; i < s.length; i++) {
    if (s[i].className == "amazon-keyword") {
      key = s[i].title;
      break;
    }
  }
  if (!key) {
    key = "google";
  }
  document.writeln('<iframe src="http://tools.kuribo.info/livelink/?key=' + key + '&n=3&w=170&h=280&c=448888" marginwidth="0" marginheight="0" width="170" height="280" border="0" frameborder="0" style="border:none;margin-top:15px;" scrolling="no"></iframe>');
}

