﻿// Popup 1
function ShowPopup1(hoveritem1)
{
hp = document.getElementById("hoverpopup1");

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

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

function HidePopup1()
{
hp = document.getElementById("hoverpopup1");
hp.style.visibility = "Hidden";
}
// Popup 2
function ShowPopup2(hoveritem2)
{
hp = document.getElementById("hoverpopup2");

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

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

function HidePopup2()
{
hp = document.getElementById("hoverpopup2");
hp.style.visibility = "Hidden";
}
// Popup 3
function ShowPopup3(hoveritem3)
{
hp = document.getElementById("hoverpopup3");

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

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

function HidePopup3()
{
hp = document.getElementById("hoverpopup3");
hp.style.visibility = "Hidden";
}
// Popup 4
function ShowPopup4(hoveritem4)
{
hp = document.getElementById("hoverpopup4");

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

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

function HidePopup4()
{
hp = document.getElementById("hoverpopup4");
hp.style.visibility = "Hidden";
}
// Popup 5
function ShowPopup5(hoveritem5)
{
hp = document.getElementById("hoverpopup5");

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

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

function HidePopup5()
{
hp = document.getElementById("hoverpopup5");
hp.style.visibility = "Hidden";
}
// Popup 6
function ShowPopup6(hoveritem6)
{
hp = document.getElementById("hoverpopup6");

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

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

function HidePopup6()
{
hp = document.getElementById("hoverpopup6");
hp.style.visibility = "Hidden";
}
// Popup 7
function ShowPopup7(hoveritem7)
{
hp = document.getElementById("hoverpopup7");

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

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

function HidePopup7()
{
hp = document.getElementById("hoverpopup7");
hp.style.visibility = "Hidden";
}

