//ajax¿ªÊ¼
var xmlHttp;

function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest){
xmlHttp=new XMLHttpRequest();
}
}

function startRequest(xx,yy,zz){
createXMLHttpRequest();


/*
var cm=document.formd.serial.value;
var cn=document.formd.pwd_serial.value;
*/
xmlHttp.onreadystatechange=handleStateChange;
xmlHttp.open("GET","serial_pd.asp?serial="+xx+"&pwd_serial="+yy,true);
xmlHttp.send(null);

}

function handleStateChange(){
if(xmlHttp.readyState==4){
if(xmlHttp.status==200){
document.formd.serial_tf.value=xmlHttp.responseText;

}
else{

}
}
else{

}
}

//AJAX ½áÊø