/*

==========

Ajax„v;N{|

==========

*/
var Http_Request;//http÷‹Blù[a?
var XMLDocument;//ÍT”^Ó~œgØSÏ‘
function AjaxCls()
{
   this.sendUrl="";//URL÷‹Bl0W@W
   //·ƒ—_÷‹Blù[a?
   this.getRequest=function()

   {
	  
       Http_Request=null;
       if(window.XMLHttpRequest)

       { 

          Http_Request=new XMLHttpRequest();

          //if(Http_Request.overrideMimeType)

             //Http_Request.overrideMimeType("text/xml");

}

       else

       { 

          if(window.ActiveXObject)

          { 

             try

             {

                Http_Request=new ActiveXObject("Msxml2.XMLHTTP");

             }

             catch(e)

             {

                try

                {

                   Http_Request=new ActiveXObject("Microsoft.XMLHTTP");

                }

                catch(e)

                {

                   Http_Request=null;

                }

             }

          }

       }
		 if (!Http_Request && typeof XMLHttpRequest != 'undefined') {
	¡¡¡¡      Http_Request = new XMLHttpRequest();
¡¡		¡¡}
   };

   //·ƒ—_ÍT”^ù[a?
   this.getXMLResponse=function()

   {
       Http_Request.onreadystatechange=alertContents;//¾‹nXMLÍT”^ýQpe     
	   Http_Request.open("get",this.sendUrl,true);//Sb_URL
       Http_Request.send(null);//ÑSpenc   
   };

}

var oAjax=new AjaxCls();//Rú^Ajax„vù[a?



