function HtmlControl($1,$2){this._1=$1;this.isVisible=true;this._2=false;this._3=false;if($2){this.isVisible=($2.visible===false)?false:true;this._2=($2.printable===true)?true:false;this._3=($2.selectable===true)?true:false;}this.setVisible=function($3){this._4.style.display=($3)?"block":"none";this.isVisible=$3;};}HtmlControl.prototype=new GControl();HtmlControl.prototype.initialize=function($4){this.selectable=function(){return this._3;};this.printable=function(){return this._2;};this._4=document.createElement("div");this._4.innerHTML=this._1;this.setVisible(this.isVisible);$4.getContainer().appendChild(this._4);return this._4;};HtmlControl.prototype.getDefaultPosition=function(){return new GControlPosition(G_ANCHOR_TOP_LEFT,new GSize(7,7));};