// JScript source code

function showPopup(id)
{
    var ulStyle = document.getElementById(id).style;
    ulStyle.display = "block";
}

function hidePopup(id)
{
    var ulStyle = document.getElementById(id).style;
    ulStyle.display = "none";
}
