function showBalloon(site, no)
{
	document.getElementById("balloon["+site+"]["+no+"]").style.display = "block";
}
function hideBalloon(site, no)
{
	document.getElementById("balloon["+site+"]["+no+"]").style.display = "none";
}
