function ShowPopup(hoveritem)
{
    hp = document.getElementById(hoveritem);

    // Set popup to visible
    hp.style.visibility = "Visible";
}
function HidePopup(hoveritem)
{
    hp = document.getElementById(hoveritem);
    hp.style.visibility = "Hidden";
}

