    /**
    *   Custom copyright for GeoStart
    **/    
    var powered_by_geostart = function(oMap) { this.oMap = oMap; };
        powered_by_geostart.prototype = new GControl(true, false);
        powered_by_geostart.prototype.initialize = function () {
                var oContainer = document.createElement("div");
                oContainer.innerHTML    = "<a target='_blank' href='http://www.geostart.nl' style='display:block;height:29px;width:90px;'><img class='png' style='border:0;' src='"+sBaseUrl+"GeoStart/images/controls/powered_by_geostart.png'></a>";
                
                oContainer.id           = "powered_by_geostart";
                oContainer.style.cssText= "width:89px;text-decoration:none;border:none;height:29px;cursor:pointer;padding-bottom:2px;_padding-bottom:0px;";

                this.oMap.getContainer().appendChild(oContainer);
                
                return oContainer;
            }
        powered_by_geostart.prototype.getDefaultPosition = function () {
                return new GControlPosition(G_ANCHOR_BOTTOM_LEFT, new GSize(67,1));
            };

