// JavaScript Document
function index_calendar2(ReElementName,YMD,Type){ 
	var xmlHttp = GetXmlHttpObject();
	if(xmlHttp == null){
        alert("抱歉!你的browse不支援ajax,請更新browse版本");
        return;
    }

	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4 && xmlHttp.status == 200){
			if(xmlHttp.responseText != null){
				//alert(xmlHttp.responseText);
				document.getElementById(ReElementName).innerHTML = xmlHttp.responseText;
			}
		}
	}
	document.getElementById(ReElementName).innerHTML = 'loading...';
	xmlHttp.open("GET", "../../cruis_work/php/ajax/index_calendar2.php?YMD="+YMD+"&Type="+Type,true);
	xmlHttp.send(null);
}


function GetXmlHttpObject(){
    var objXMLHttp = null;
    if(window.XMLHttpRequest){
        objXMLHttp = new XMLHttpRequest();
    }else if(window.ActiveXObject){
        objXMLHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    return objXMLHttp;
}

