function ShowPopup(hoveritem)
{
hp = document.getElementById("ehoverpopup");
// Set position of hover-over popup
hp.style.top = hoveritem.offsetTop + 320 + "px";
hp.style.left = hoveritem.offsetLeft + 400 + "px";
// Set popup to visible
hp.style.visibility = "Visible";
 }

function ShowPopup2(hoveritem)
{
hp = document.getElementById("ehoverpopup2");
// Set position of hover-over popup
hp.style.top = hoveritem.offsetTop + 320 + "px";
hp.style.left = hoveritem.offsetLeft + 400 + "px";
// Set popup to visible
hp.style.visibility = "visible";

}

function ShowPopup3(hoveritem)
{
hp = document.getElementById("ehoverpopup3");
// Set position of hover-over popup
hp.style.top = hoveritem.offsetTop + 320 + "px";
hp.style.left = hoveritem.offsetLeft + 400 + "px";
// Set popup to visible
hp.style.visibility = "visible";

}



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

}

function HidePopup2()
{
hp = document.getElementById("ehoverpopup2");
hp.style.visibility = "Hidden";

}

function HidePopup3()
{
hp = document.getElementById("ehoverpopup3");
hp.style.visibility = "Hidden";

}

