function showPopup(id)
{
    document.getElementById(id).style.display = "block";
}
function hidePopup(id)
{
    top.document.getElementById(id).style.display = "none";
}
// -->End the balloon popup class<--