function fillboxjd() {
	if (http_request.readyState == 4) { 
		if (http_request.status == 200) { 
			document.getElementById("jdName_list").innerHTML = http_request.responseText;
		} 
	}
}

send_request("get","tips/tipboxJd.htm","","text",fillboxjd);

