代码流程如下
var xmlhttpTzcl ;
function GetTzcl(url)
  { 
   var oXmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); 
   
   if (xmlhttpTzcl !=null )
    xmlhttpTzcl=null;
       
 xmlhttpTzcl = oXmlHttp;
 oXmlHttp.onreadystatechange = GetreadyTzcl;
 oXmlHttp.Open("POST", url, true);
 try
  {
  oXmlHttp.Send();   
  }
 catch(e)
  {
   alert("error");
  }
 return true; 
  }function GetreadyTzcl()
{
  if (xmlhttpTzcl!=null)
  {
if(xmlhttpTzcl.readyState==4)
{
  if (xmlhttpTzcl.status==200)
   {    
  var tzclXML = new ActiveXObject("Microsoft.XMLDOM");
  tzclXML.async = false;
  //alert(xmlhttpTzcl.responseXML.xml);
   if (tzclXML.loadXML(xmlhttpTzcl.responseXML.xml))