<!--



var xml_obj;

function CheckXMLHttpRequest(){

	xml_obj = NewXMLHttpRequest();

	if(xml_obj == null){
		return "error";
	}

	return null;

}



function NewXMLHttpRequest(){

	if(window.XMLHttpRequest){
		return new XMLHttpRequest();
	}else if(window.ActiveXObject){
		try{
			return new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			return new ActiveXObject("Microsoft.XMLHTTP");
		}
	}else{
		return null;
	}

}



function SendXMLHttpRequest(p1, p2, path){

	xml_obj.open("POST", path, false);
	xml_obj.setRequestHeader("content-type", "application/x-www-form-urlencoded; charset=UTF-8");
	xml_obj.send("year=" + p1 + "&mon=" + p2 + "&path=" + path);

	return xml_obj.responseText;

}



// -->
