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

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

