function c1_DetailNsyn() 
{
//====改這裡，要讓後端產生資料的程式頁======================//
a0_createXMLHttpRequest();
url="c1_DetailNsyn.aspx"
xmlHttp.onreadystatechange = g0_nsynR
xmlHttp.open("GET", url, false);
xmlHttp.send(null);
//==========================================================//
}

function g0_nsynR()
{//s1
if(xmlHttp.readyState == 4) 
{//s2
//alert ("4")
if(xmlHttp.status == 200)
{//s3
//alert ("200")

//====改這裡，把XML回傳的資料秀在前端========================//
var xmldoc = xmlHttp.responsexml;
if (xmldoc.getElementsByTagName('DefaultView').length >=1)
{
document.getElementById("系統編碼").value=xmldoc.getElementsByTagName('DefaultView')[0].getElementsByTagName('系統編碼')[0].childNodes[0].nodeValue;
}
setTimeout("a0_resize()",0);
//==========================================================//

}//s3
}//s2
}//s1

