if( typeof gAAJAXMAP == 'undefined' ){
  var gAAJAXMAP = 'defined';
  var AAjaxMap = Class.create();
  AAjaxMap.prototype = Object.extend(new AJSMapBaseClass(), {
    mincenterzoom:100000,

    initialize:function(divname,mapparams){},
    show:function(){},
    scr2geo:function(s){return null;},
    geo2scr:function(g){return null;},
    centerToGeo:function(g){},
    setZoom:function(zoom){},
    getZoom:function(){},
    createContent:function(params){return null;},
    showContent:function(content){},
    hideContent:function(content){},
    removeContent:function(content){},
    centerToContent:function(content){},
    contentToTop:function(content){},
    contentToBottom:function(content){},

    setMinCenterZoom:function(MinCenterZoom){
      this.mincenterzoom=MinCenterZoom;
    },
    getJMapURLParams: function(){
      var par=
        "&MapCenterX="+this.getCenter().getLon()+
        "&MapCenterY="+this.getCenter().getLat()+
        "&MapScaling="+this.getZoom();
      return par;
    },
    setOnChange: function(listener){},
    getCenter: function(){}

  });
}
