function loadtfxt(dest) {
  try {
    xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e) {}
  xmlhttp.onreadystatechange = replacetfxt;
  xmlhttp.open("GET", dest);
  xmlhttp.send(null);
}

function loadakira(dest) {
  try {
    xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e) {}
  xmlhttp.onreadystatechange = replaceakira;
  xmlhttp.open("GET", dest);
  xmlhttp.send(null);
}

function replacetfxt() {
  if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
    document.getElementById("tfxt").innerHTML = xmlhttp.responseText;
  }
}

function replaceakira() {
  if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
    document.getElementById("akira").innerHTML = xmlhttp.responseText;
  }
}
