GTextControl=function(){this.Text;this.OnLoad;};GTextControl.prototype=new GControl();GTextControl.prototype.initialize=function(a){var b=new Element("div");b.className="map-info-text";var c=new Element("span");c.set("html",this.Text);b.appendChild(c);a.getContainer().appendChild(b);if(this.OnLoad&&typeof(this.OnLoad)=="function"){this.OnLoad(this,new GTextLoadEventArgs(a,b));}return b;};GTextControl.prototype.getDefaultPosition=function(){return new GControlPosition(G_ANCHOR_TOP_LEFT,new GSize(75,7));};GTextLoadEventArgs=function(a,b){this.Map=a;this.Container=b;};if(typeof(Sys)!=="undefined"){Sys.Application.notifyScriptLoaded();}
