function comAjax(url){
	// alert("url["+url+"]");
	createXMLHttpObject();
	xmlhttp.onreadystatechange = function() {
		if (xmlhttp.readyState == 4) {
			// alert("responseText["+xmlhttp.responseText+"]");
			eval("res="+xmlhttp.responseText);
			ajaxResult(res);
		}
	}
	xmlhttp.open('GET', url);
	xmlhttp.send(null);
}
// XMLオブジェクト生成
function createXMLHttpObject(){
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (e) {
			xmlhttp = false;
		}
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}
}


