
function ShowPopup1(hoveritem)
{
hp = document.getElementById("hoverpopup1");

// Set position of hover-over popup
hp.style.top = hoveritem.offsetTop + 0;
hp.style.left = hoveritem.offsetLeft + 0;

// Set popup to visible
hp.style.visibility = "Visible";
}

function HidePopup1()
{
hp = document.getElementById("hoverpopup1");
hp.style.visibility = "Hidden";
}

//-----------------------------------

function ShowPopup2(hoveritem)
{
hp = document.getElementById("hoverpopup2");

// Set position of hover-over popup
hp.style.top = hoveritem.offsetTop + 0;
hp.style.left = hoveritem.offsetLeft + 0;

// Set popup to visible
hp.style.visibility = "Visible";
}

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





