
function showBallon(div)
{		
	document.getElementById(div).style.display = "block";		
}

function hideBallon(div)
{
	document.getElementById(div).style.display = "none";
}


