function loadTextFile(filename) {
	httpObj = createXMLHttpRequest();
	httpObj.onreadystatechange = displayData;
	httpObj.open("GET",filename,true);
	httpObj.send(null);
}
function displayData() {
	//if ((httpObj.readyState == 4) && (httpObj.status == 200))
	if (httpObj.readyState == 4) {
		document.getElementById("result").innerHTML = httpObj.responseText;
		//読み込んだファイルを画面上に反映
	}
}

//▼IEの場合のみActiveXを使用

function createXMLHttpRequest() {
	var XMLhttpObject = null;
	try {
		XMLhttpObject = new XMLHttpRequest();
	}catch(e){
		try{
			XMLhttpObject = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				XMLhttpObject = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(e){
				return null;
			}
		}
	}
	return XMLhttpObject;
}

