// JavaScript Document
function show_bubble(id)
{
	document.getElementById("bubble_"+id).style.display = 'inline';
}

function hide_bubble(id)
{
	document.getElementById("bubble_"+id).style.display = 'none';
}

