


function BubbleDoit(ActionDoit)
{
	document.getElementById(ActionDoit).style.visibility = 'visible';

	var posx = 0;
	var posy = 0;
	var e = window.event;



	if (e.pageX || e.pageY)
	{
		posx = e.pageX;
		posy = e.pageY;
	}
	else if (e.clientX || e.clientY)
	{
		posx = e.clientX + document.body.scrollLeft;
		posy = e.clientY + document.body.scrollTop;
	}
	
	// posx and posy contain the mouse position relative to the document
	// Do something with this information
	document.getElementById(ActionDoit).style.left = posx - 100;
	document.getElementById(ActionDoit).style.top = posy + 10;

}



function HideBubble(ActionHide)
{
	var posx = 0;
	var posy = 0;
	document.getElementById(ActionHide).style.visibility = 'hidden';

}


