// JavaScript Document
function ajax_Click()
{
	var xmlhttp;
	try{
		xmlhttp=new XMLHttpRequest();
	}
	catch(e){
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
		
//    xmlhttp.onreadystatechange=function(){
//        if (xmlhttp.readyState==4)
//        {
//          if (xmlhttp.status==200)
//          {
//              var data=xmlhttp.responseText;
//              alert(data);
//          }
//        }
//    }
	
	var KCID = document.getElementById("hfID").value;
	xmlhttp.open("post", "../KeCheng/KC_Click.aspx", true);
	xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	xmlhttp.send("KCID="+KCID);
}