function U(text){this.map;this.div=document.createElement("div");this.div.style.background="#ffffff";this.div.style.borderColor="#666666";this.div.style.borderWidth="1px";this.div.style.borderStyle="solid";this.div.style.padding="2px";this.div.style.cssFloat="left";this.div.style.styleFloat="left";this.div.style.fontFamily="arial,sans-serif";this.div.style.color="#777777";this.div.style.fontSize="8pt";this.div.innerHTML=text;this.pane=document.createElement("div");this.pane.style.display="none";this.pane.appendChild(this.div);};U.prototype=new GControl();U.someIsVisible=false;U.prototype.printable=function(){return false;};U.prototype.selectable=function(){return false;};U.prototype.getDefaultPosition=function(){return new GControlPosition(G_ANCHOR_TOP_RIGHT,new GSize(0,0));};U.prototype.initialize=function(map){this.map=map;map.getContainer().appendChild(this.pane);return this.pane;};U.prototype.setText=function(text){this.div.innerHTML=text;};U.prototype.hide=function(){this.pane.style.display="none";};U.prototype.show=function(pxPoint){if(!this.map)return false;var x=pxPoint.x;var y=pxPoint.y;if(x>this.map.getSize().width-120){x=this.map.getSize().width-120}if(y>this.map.getSize().height-100){y=this.map.getSize().height-100}var pos=new GControlPosition(G_ANCHOR_TOP_LEFT,new GSize(x+20,y-10));pos.apply(this.pane);this.pane.style.display="block";}