<!--

//var xmlHttp;
//var wpDivID;

function loadText(pageURL,strDivid) {

	wpDivID = strDivid;

	try {
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e2) {
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
	}catch(e){
		try {
			xmlHttp = new XMLHttpRequest();
		}catch(e) {
		}
	}

	if (xmlHttp){
		xmlHttp.onreadystatechange = setPageData;
		xmlHttp.open('GET', pageURL, true);
		xmlHttp.send(null);

	}else{
		alert("XMLHttpRequest失敗");
	}

}

function setPageData(){

	if (xmlHttp.readyState == 4 && xmlHttp.status == 200){
		document.getElementById(wpDivID).innerHTML = xmlHttp.responseText;
	}
}

// -->


