function updatePage() {
  if (xmlHttp.readyState < 4) {
	alert_club_list.style.display="block";
  }
  //alert(xmlHttp.readyState);
  if (xmlHttp.readyState == 4) {
    var response = xmlHttp.responseText;
	//alert_club_list.style.display="none";
	//scroll_begin.innerHTML=response;
	//document.getElementById("ssd").innerHTML= response;
	//alert(response);
	if(scroll_begin.clientHeight>290){
		scroll_end.innerHTML=response;
	}
  }
}

function get_list() {
	var id = document.getElementById("ID").value;
  	var url = "../../include/ajax_club_list2.asp?ID=" + id;
  	xmlHttp.open("GET", url, true);
  	xmlHttp.onreadystatechange = updatePage;
  	xmlHttp.send(null);
}