function WV_XhrDp(path,vl,ids,pl){
	var idjs,vv,k,v,i,n,d=document;
//	var tst='abc';
	idjs=WV_toOI(ids);
	var xhr=WV_Xhr(); if(xhr==null){ return false; }
	xhr.onreadystatechange=function(){
		if(xhr.readyState==4 && xhr.status==200){
			var xhrVals=xhr.responseXML;
			if(!xhrVals.documentElement){ return false; }
			//処理設定
			for(k in idjs){
				if(!d.getElementById(k)){ continue; }
				v=xhrVals.getElementsByTagName(idjs[k]).item(0).firstChild.data;
				d.getElementById(k).innerHTML=v; //通常テキスト
			}
		}
	}
	xhr.open("GET",path+"wv_xhrdp.php?dptxt="+encodeURI(vl),true);
	xhr.send(null);
	//d.getElementById('js_alert').innerHTML=vl;
	return true;
}

//____________________mio@skyv.org__m_i_o_
//[2008.10.20] 
