// JavaScript Document
active_bubble = 0;
function show_bubble(uid) {
	if(uid != active_bubble) {
		obj = document.getElementById('box'+uid);
		area_obj = document.getElementById('location'+uid);
		if(area_obj.offsetLeft > (area_obj.parentNode.offsetWidth - 200)) {
			obj.style.right = '0px';
			obj.style.left = 'auto';
		}
		else {
			obj.style.left = (area_obj.offsetLeft+16)+'px';
		}
		obj.style.top = (area_obj.offsetTop+16)+'px';
		obj.style.display = 'block';
		if(active_bubble != 0) {
			document.getElementById('box'+active_bubble).style.display = 'none';
		}
		active_bubble = uid
	}
}
function close_bubble() {
	document.getElementById('box'+active_bubble).style.display = 'none';
	active_bubble = 0;
}
