
/* prototype.js を利用し外部ファイルを読み込む */


function data_include(id, file) {
  document.open();
  document.write('<div id="' + id + '">');
  document.write('</div>');
  document.close();

  var options = {};
  options.method = "get";
  options.asynchronous = false;
  new Ajax.Updater(id, file, options);
}

