// JavaScript Document

var powered_by_mediatouch = function(oMap) { this.oMap = oMap; };

powered_by_mediatouch.prototype = new GControl(true, false);
powered_by_mediatouch.prototype.initialize = function () {
	var oContainer = document.createElement("div");
	oContainer.innerHTML = "<a target='_blank' href='http://www.mediatouch.de' style='display:block;height:32px;width:122px;'><img class='png' style='border:0;' src='/global/images/mediatouch.png'></a>";
	oContainer.id = "powered_by_mediatouch";
	oContainer.style.cssText= "width:122px;text-decoration:none;border:none;height:32px;cursor:pointer;padding-bottom:2px;_padding-bottom:0px;";

	map.getContainer().appendChild(oContainer);

	return oContainer;
}
 
 powered_by_mediatouch.prototype.getDefaultPosition = function () {
 	return new GControlPosition(G_ANCHOR_BOTTOM_LEFT, new GSize(197,1));
 };
