	function K_HtmlControl(html)
	{
		this.html=html;
	}
	K_HtmlControl.prototype=new GControl(true,false);
	K_HtmlControl.prototype.initialize=function(a)
	{
		this.Map=a;
		this.div=document.createElement("div");
		this.div.style.cursor="default";
		this.div.style.position="absolute";
		this.div.unselectable="on";
		this.div.onselectstart=function(){return false};
		this.div.style.fontSize="11px";
		this.div.style.fontFamily="Arial, sans serif";
		this.div.style.width = "98px";
		this.div.style.textAlign = "center";
		this.div.style.MozUserSelect="none"
		this.div.innerHTML=this.html;
		a.getContainer().appendChild(this.div);
		GEvent.bindDom(this.div,"click",this,this.onClick);
		return this.div;
	};
	K_HtmlControl.prototype.getDefaultPosition=function()
	{
		return new GControlPosition(G_ANCHOR_BOTTOM_RIGHT,new GSize(15,0))
	};
	K_HtmlControl.prototype.onClick=function()
	{
		GEvent.trigger(this,"click");
	}
//	
	        function bbsControl() {
        }
        bbsControl.prototype = new GControl();

        bbsControl.prototype.initialize = function(map) {
          var container = document.createElement("div");

          var bbsDiv = document.createElement("div");
          this.setButtonStyle_(bbsDiv);
          container.appendChild(bbsDiv);
          bbsDiv.appendChild(document.createTextNode("BBS"));
          GEvent.addDomListener(bbsDiv, "click", function() {
            self.location="http://www.omask.com/bbs/forum-93-1.html";
          });

          map.getContainer().appendChild(container);
          return container;
        }
		bbsControl.prototype.getDefaultPosition = function() {
          return new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(10, 5));
        }

        // e??
        bbsControl.prototype.setButtonStyle_ = function(button) {
          button.style.color = "#0000cc";
          button.style.backgroundColor = "white";
          button.style.font = "bold 9pt Arial";
          button.style.border = "1px solid black";
          button.style.padding = "2px 0px 0px 0px";
          button.style.textAlign = "center";
          button.style.width = "4em";
		  button.style.height = "16px";
          button.style.cursor = "pointer";
        }
