function logoCopyRight(logoUrl) {
	this.logoUrl = logoUrl;
}
logoCopyRight.prototype = new GControl();

logoCopyRight.prototype.initialize = function(map) {
  var container = document.createElement("div");
  
  var zoomInDiv = document.createElement("div");
  this.setButtonStyle_(zoomInDiv);
  container.appendChild(zoomInDiv);
  zoomInDiv.innerHTML = "<img src='" + this.logoUrl + "'>";

  map.getContainer().appendChild(container);
  return container;
}
logoCopyRight.prototype.getDefaultPosition = function() {
  return new GControlPosition(G_ANCHOR_BOTTOM_LEFT, new GSize(-10, 33));
}
logoCopyRight.prototype.setButtonStyle_ = function(button) {
  button.style.color = "#0000cc";
  button.style.font = "small Arial";
  button.style.padding = "2px";
  button.style.marginBottom = "3px";
  button.style.textAlign = "center";
  button.style.width = "6em";
  button.style.width = "100px";
}

