  site_url = 'http://www.banady.com/';
  //var cache = new Array();

  var AjaxKtClass = function() {
                    this.xmlHttp = false;
                    this.url = '';
                    this.updateFun = null;

                    this.Create = function(url, updateFun) {
                      /*@cc_on @*/
                      /*@if(@_jscript_version >= 5)
                        try {
                          this.xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
                        } catch(e) {
                          try {
                            this.xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
                          } catch(e2) {
                            this.xmlHttp = false;
                            }
                        }
                      @end @*/

                      if(!this.xmlHttp&&typeof XMLHttpRequest != 'undefined') {
                        this.xmlHttp = new XMLHttpRequest();
                      }

                      this.url = url;
                      this.updateFun = updateFun;
                    }

                    this.Open = function(param) {
                      //cache.push(param);// && cache.length > 0//this.xmlHttp.send(cacheEntry);//var cacheEntry = cache.shift();
                      if (this.xmlHttp.readyState == 4 || this.xmlHttp.readyState == 0) {
                        this.xmlHttp.open('POST', this.url, true);
                        this.xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=utf-8');
                        this.xmlHttp.onreadystatechange = this.updateFun;
                        this.xmlHttp.send(param);
                      }
                    }

                    this.GetData = function(type) {
                        if (type == 'XML') return this.xmlHttp.responseXML.documentElement;
                        if (type == 'TEXT') return this.xmlHttp.responseText;
                      return null;
                    }
  }

  var ajaxObj = new AjaxKtClass();
  var G_1 = '`|}';
  var G_2 = '|`}';
  var G_3 = '}|`';