﻿  function   browse()
  {
  var brows=null; 
               try 
               { 
                   brows=new ActiveXObject("Msxml2.XMLHTTP"); 
                } 
            catch(e)
            { 
                  try 
                   { 
                      brows=new ActiveXObject("Microsoft.XMLHTTP"); 
                   }
             catch(oc)
            { 
                     brows=null 
                   } 
              } 
           if ( !brows && typeof XMLHttpRequest != "undefined" ) 
            { 
               brows=new XMLHttpRequest() 
             } 
           return brows 
  }
  
  function   gsxw()   
  {   
  var http=browse();
  http.open("GET","/js/ajax_gsxw.aspx?iddd=",false);   
  http.send();  
  var   strr   =   http.responseText;   
  //var aa=str.getElementsByTagName("option");
  //document.getElementById("select").innerHTML=str; 

  document.write(strr);   
  //document.getElementById("select1").innerHTML=http.responseText; 
  //document.getElementsByTagName("option")=str;
  setTimeout("HDDSM()",1000);

  }