// ［送信］ボタンをクリック時の処理を定義
function send(entryTitle) {
  //var entTitle = entryTitle;
  // 非同期通信を行うためのXMLHttpRequestオブジェクトを生成
  if (window.XMLHttpRequest) {
    xmlReq = new XMLHttpRequest();
  }else{
    if (window.ActiveXObject) {
      xmlReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
  // サーバーとの通信を開始
  xmlReq.open("GET","http://www.sweetsoulrecords.com/logging.php?title=" + entryTitle + "&url=" + (document.URL));
  xmlReq.send(null);
}
