var timerID;
onload=function dataSendLoad() {

	httpObj = createXMLHttpRequest(statusCheck);

	if (httpObj) {
		httpObj.open("GET","/ads/cm_view.php?dispLogoFlg=f",true);
		httpObj.send(null);
		httpObj.onreadystatechange = statusCheck;
	}

}

function statusCheck() {
	if (timerID) {
		clearInterval(timerID);
	}
	if ((httpObj.readyState == 4) && (httpObj.status == 200)) {
		document.getElementById("aas").innerHTML = httpObj.responseText;
		timerID = setInterval("dataSendLoad()",60000);
	} else {
		document.getElementById("aas").innerHTML = "<img src='http://ad.ispace.co.jp/images/aasloading.gif' width=150 height=16 alt='Now Loading...'>";
	}
}
