function ShowPopup($hoveritem)
{
	hp = document.getElementById($hoveritem);
	hp.style.visibility = "visible";
}

function HidePopup($hoveritem)
{
	hp = document.getElementById($hoveritem);
	hp.style.visibility = "hidden";	
}
