function CreateBubble(to, text, width, height, POStop)
	{
        /*
        var opPOStop = parseInt(POStop);
	var RandomString = randomString();
	var OWidth = parseInt(width);
	var OHeight = parseInt(height);
	var object = document.getElementById(to);
	object.style.position="absolute";
	object.style.display="inline";

	var DIVPosTop = OHeight-15;
	var TEXTPosTop = OHeight-15;
	var TEXTWidth = OWidth/1;
	var DIVTEXTWidth = OWidth/10;
	var BubBotWidthPrec = OWidth/10;
	var BubBotWidth = OWidth+parseInt(BubBotWidthPrec);
	var foWidth = OWidth+40;	
	var ihtml = "";
	ihtml+= "<div style=\"margin: 0px; padding: 0px; position: relative;  text-align: right; line-height: 10px; width: "+foWidth+"px;\" id=\""+RandomString+"as_id\">";
	ihtml+= "<img src=\"http://"+document.domain+"/system/img/bt.png\"  id=\""+RandomString+"hlp_bt_id\"  style=\"width: "+OWidth+"px; padding-left: 0%;\" /><div style=\"clear: both;\"></div>";
	ihtml+= "<img src=\"http://"+document.domain+"/system/img/bi.png\"  style=\"width: "+OWidth+"px; height: "+OHeight+"px; margin-left: 9%; padding-left: 0%;\" /><div style=\"clear: both;\"></div>";
	ihtml+= "<img src=\"http://"+document.domain+"/system/img/bb.png\"  id=\""+RandomString+"hlp_bb_id\" style=\"width: "+BubBotWidth+"px;\" />";
	ihtml+= "<div id=\""+RandomString+"statetext_id\" style=\"float: right; text-align: center;  position: relative; width: "+TEXTWidth+"px;\"><div style=\"margin: 6%; line-height: 12px; font-size: 12px;\">"+text+"</div></div>";
	ihtml+= "</div>";
	object.innerHTML=ihtml;
	var OffHeightTop = document.getElementById(RandomString+"hlp_bt_id").offsetHeight;
	var OffHeightBottom = document.getElementById(RandomString+"hlp_bb_id").offsetHeight;
	document.getElementById(RandomString+"as_id").style.top=-OffHeightTop+opPOStop-OffHeightBottom-OHeight+"px";
	document.getElementById(RandomString+"statetext_id").style.top=-OffHeightTop+opPOStop-OffHeightBottom-OHeight+"px";
        */
	}

function ClearBubble(whatID)
	{
        /*
	document.getElementById(whatID).innerHTML='';
	document.getElementById(whatID).style.display='none';
	*/
	}
