function ShowPopup(hoveritem)
{
hp = document.getElementById("hoverp");

// Set position of hover-over popup
hp.style.top = hoveritem.offsetTop + 45;
hp.style.left = hoveritem.offsetLeft + 0;

// Set popup to visible
hp.style.visibility = "Visible";
}

function HidePopup()
{
hp = document.getElementById("hoverp");
hp.style.visibility = "Hidden";
}