var xmlhttp = null;

function createXmlHttpRequest() {
	if (window.XMLHttpRequest) {							// Firefox,Opera,Safari,IE7
		return new XMLHttpRequest();
	} else if (window.ActiveXObject) {						// IE5,IE6
		try {
			return new ActiveXObject("Msxml2.XMLHTTP");		// MSXML3
		} catch(e) {
			return new ActiveXObject("Microsoft.XMLHTTP");	// MSXML2まで
		}
	} else {
		return null;
	}
}

function comment_query(entry_id, no) {
	//XMLHttpRequestを生成する
	var xmlhttp = createXmlHttpRequest();
	
	xmlhttp.open("GET", "http://www.awamori.tv/app/comment_ajax.php?id="+entry_id+"&now="+no, true);
	xmlhttp.onreadystatechange = function() {
		if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
			//結果をdivの内容として書き換える
			document.getElementById("comment_result").innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.send(null)
}

