<script type="text/javascript">
var Loadpmklist2v2 = function(url){
var xmlhttp4;
//create XMLHttpRequest
if (window.XMLHttpRequest){// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp4=new XMLHttpRequest();
}
else{// code for IE6, IE5
xmlhttp4=new ActiveXObject("Microsoft.XMLHTTP");
}
//check status of request
xmlhttp4.onreadystatechange=function(){
if (xmlhttp4.readyState==3 && xmlhttp4.status==200){
document.getElementById("Div1").innerHTML="<img src='images/load.gif' width='40' height='40'>Loading....";
}
if (xmlhttp4.readyState==4 && xmlhttp4.status==200){
document.getElementById("Div1").innerHTML=xmlhttp4.responseText;
}
}
//sent a request to server
xmlhttp4.open("GET",url,true); //สงคำรองไปที่ Server เพื่อใหประมวลผล
xmlhttp4.send();
};
</script>