DendroLogo.prototype = new GControl();
function DendroLogo()
{
}

DendroLogo.prototype.initialize = function(map)
{
    var container = document.createElement("div");
    var logoDiv = document.createElement("div");
    logoDiv.setAttribute( "id", "dendroLogo" );
    container.appendChild( logoDiv );
    logoDiv.appendChild(document.createTextNode("OzDendro"));
    map.getContainer().appendChild(container);
    return container;
}

DendroLogo.prototype.getDefaultPosition = function()
{
    return new GControlPosition(G_ANCHOR_BOTTOM_LEFT, new GSize(20, 40));
}