function BannerButtonControl(){}BannerButtonControl.prototype=new GControl;BannerButtonControl.prototype.initialize=function(b){var c=document.createElement("div");b.getContainer().appendChild(c);return c};BannerButtonControl.prototype.getDefaultPosition=function(){return new GControlPosition(G_ANCHOR_BOTTOM_LEFT,new GSize(0,38))};BannerButtonControl.prototype.setButtonStyle_=function(b){b.style.border="0px"};function FullScreenButtonControl(){}FullScreenButtonControl.prototype=new GControl;FullScreenButtonControl.prototype.initialize=function(b){var c=document.createElement("div"),d=document.createElement("a");d.href=document.URL+"&fullscreen=1";d.target="_blank";var a=document.createElement("img");a.src="icons/fullscreen.png";a.alt="Fullscreen";a.width="16";a.height="16";a.title=a.alt;this.setButtonStyle_(a);c.appendChild(d);d.appendChild(a);b.getContainer().appendChild(c);return c};FullScreenButtonControl.prototype.getDefaultPosition=function(){return new GControlPosition(G_ANCHOR_BOTTOM_LEFT,new GSize(2,196))};FullScreenButtonControl.prototype.setButtonStyle_=function(b){b.style.border="0px"};
