function ShowPopup(hoveritem, extra)
{
document.getElementById(hoveritem).style.visibility = "Visible";
}

function HidePopup(hoveritem)
{
document.getElementById(hoveritem).style.visibility = "Hidden";
}
