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

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



