function BannerButtonControl(){}
BannerButtonControl.prototype=new GControl();BannerButtonControl.prototype.initialize=function(map){var container=document.createElement("div");var atag=document.createElement("a");atag.href="http://www.matusz.ch/blog/projekte/xml-google-maps-wordpress-plugin/";atag.target="_blank";var imgtag=document.createElement("img");imgtag.src="images/pluginbanner_left.png";imgtag.alt="Visit the plugin page!";imgtag.title=imgtag.alt;this.setButtonStyle_(imgtag);container.appendChild(atag);atag.appendChild(imgtag);map.getContainer().appendChild(container);return container;}
BannerButtonControl.prototype.getDefaultPosition=function(){return new GControlPosition(G_ANCHOR_BOTTOM_LEFT,new GSize(0,38));}
BannerButtonControl.prototype.setButtonStyle_=function(button){button.style.border="0px";}
function FullScreenButtonControl(){}
FullScreenButtonControl.prototype=new GControl();FullScreenButtonControl.prototype.initialize=function(map){var container=document.createElement("div");var atag=document.createElement("a");atag.href=document.URL+"&fullscreen=1";atag.target="_blank";var imgtag=document.createElement("img");imgtag.src="icons/fullscreen.png";imgtag.alt="Fullscreen";imgtag.title=imgtag.alt;this.setButtonStyle_(imgtag);container.appendChild(atag);atag.appendChild(imgtag);map.getContainer().appendChild(container);return container;}
FullScreenButtonControl.prototype.getDefaultPosition=function(){return new GControlPosition(G_ANCHOR_BOTTOM_LEFT,new GSize(2,196));}
FullScreenButtonControl.prototype.setButtonStyle_=function(button){button.style.border="0px";}
