//create by hongzhenhua
//2008-07-08
//var $ = function(i){ return document.getElementById(i); }
var dat
function createXMLHttpRequest_1(){
	var xmlHttp;
	if(window.ActiveXObject){
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}else if(window.XMLHttpRequest){
		xmlHttp=new XMLHttpRequest();
    }
    return xmlHttp;
}
function getDATA_1(url,dd,divId){
	var xmlHttp = createXMLHttpRequest_1();
	
    xmlHttp.open("POST",url,true);
    xmlHttp.onreadystatechange = function () { dat=document.getElementById(divId).innerHTML; handleStateChange_1(xmlHttp,divId); };
     xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
        xmlHttp.send(dd);
}
function handleStateChange_1(xmlHttp,divId){

	if(xmlHttp.readyState==4){
		if(xmlHttp.status==200){
			document.getElementById(divId).innerHTML=xmlHttp.responseText;
			document.getElementById("myDis").className="in2lfzs2"
			document.getElementById("myDis").innerHTML="赠送成功了";
		}else{
           document.getElementById(divId).innerHTML="赠送失败";
           document.getElementById(divId).innerHTML=dat;
		}
	}else{
           document.getElementById(divId).innerHTML="正在赠送中,请稍候……";
   }
}


