    /**
    *   Custom overlay for GreenMaps
    *   @param object oMap
    *   @param int x
    *   @param int y
    **/    
    var control_leaderplus = function(oMap, x, y) { this.oMap = oMap; this.x = x; this.y=y; };
        control_leaderplus.prototype = new GControl(true, false);
        control_leaderplus.prototype.initialize = function () {
                var oContainer = document.createElement("div");
                oContainer.innerHTML    = "<a target='_blank' href='http://www.leaderplus.nl/' style='display:block;height:27px;width:27px;'><img style='border:0;' src='"+sBaseUrl+"GeoStart/images/controls/logo_leaderplus.gif'></a>";
                
                oContainer.id           = "leaderplus";
                oContainer.style.cssText= "width:27px;text-decoration:none;border:none;height:27px;cursor:pointer;padding-bottom:2px;_padding-bottom:0px;";

                this.oMap.getContainer().appendChild(oContainer);
                
                return oContainer;
            }
        control_leaderplus.prototype.getDefaultPosition = function () {
                return new GControlPosition(G_ANCHOR_BOTTOM_LEFT, new GSize(this.x,this.y));
            };

