﻿// JScript 文件

 function pd()
{
 var xmlhttp;
     if(window.ActiveXObject)
     {
      xmlhttp=new ActiveXObject("Msxml2.XMLHTTP.3.0"); 
     }
     else if(window.XMLHttpRequest)
     {
      xmlhttp=new XMLHttpRequest();
     }  
     if(!xmlhttp && typeof xmlhttprequest != 'undefined') 
     { 
        xmlhttp = new XMLHttpRequest(); 
     } 

    xmlhttp.open("POST","/pd.aspx?xm=d",false);          
    xmlhttp.send(" "); 

  if(xmlhttp.readyState==4)
     {
      if(xmlhttp.status==200)
      {
      
        document.getElementById("xs").innerHTML=xmlhttp.responseText;
      }
     }         
}
window.onload =pd;
