var hoveritem
function ShowPopup(hoveritem)
{	
hp = document.getElementById([hoveritem]);
// Set popup to visible
hp.style.visibility = "Visible";
hp.style.display = "";
}

function HidePopup(hoveritem)
{
hp = document.getElementById([hoveritem]);
hp.style.visibility = "Hidden";
hp.style.display = "none";
}

function ShowParentPopup(hoveritem)
{
hp = document.getElementById([hoveritem]);
// Set popup to visible
parent.hp.style.visibility = "Visible";
parent.hp.style.display = "";
}

function HideParentPopup(hoveritem)
{
hp = document.getElementById([hoveritem]);
parent.hp.style.visibility = "Hidden";
parent.hp.style.display = "none";
}
