function HtmlControl(b,a){this.html=b;this.isVisible=true;this.isPrintable=false;this.isSelectable=false;if(a){this.isVisible=(a.visible===false)?false:true;this.isPrintable=(a.printable===true)?true:false;this.isSelectable=(a.selectable===true)?true:false;}}HtmlControl.prototype=new GControl();HtmlControl.prototype.initialize=function(a){this.div=document.createElement("div");this.div.innerHTML=this.html;this.setVisible(this.isVisible);a.getContainer().appendChild(this.div);return this.div;};HtmlControl.prototype.getDefaultPosition=function(){return new GControlPosition(G_ANCHOR_TOP_LEFT,new GSize(7,7));};HtmlControl.prototype.selectable=function(){return this.isSelectable;};HtmlControl.prototype.printable=function(){return this.isPrintable;};HtmlControl.prototype.setVisible=function(a){this.div.style.display=a?"":"none";this.isVisible=a;};HtmlControl.prototype.visible=function(){return this.isVisible;};
