var xmlHttp;

onload = function()
{
	loadText();
}
function loadText(){
  if (window.XMLHttpRequest){
    xmlHttp = new XMLHttpRequest();
  }else{
    if (window.ActiveXObject){
      xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }else{
      xmlHttp = null;
    }
  }
  xmlHttp.onreadystatechange = checkStatus;
//  xmlHttp.open("GET", "http://localhost/warabi_0423/html/data/spe/logs/index_public.dat", true);
  xmlHttp.open("GET", "http://www.hotelpalace.jp/data/spe/logs/index_public.dat", true);

  xmlHttp.send(null);
}

function checkStatus(){
  if (xmlHttp.readyState == 4 && xmlHttp.status == 200){
    var node = document.getElementById("disp");
    node.innerHTML = xmlHttp.responseText;
  }
}


