function ShowPopup(hoveritem)
	{
		hp = document.getElementById("hoverpopup");
		
		// Set popup to visible
		hp.style.top = hoveritem.offsetTop + 500;
		hp.style.left = hoveritem.offsetLeft + 300;

		hp.style.visibility = "Visible";
	}

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


function ShowPopup12x12(hoveritem)
	{
		hp = document.getElementById("hoverpopup12x12");
		
		// Set popup to visible
		hp.style.top = hoveritem.offsetTop + 500;
		hp.style.left = hoveritem.offsetLeft + 300;

		hp.style.visibility = "Visible";
	}

	function HidePopup12x12()
	{
		hp = document.getElementById("hoverpopup12x12");
		hp.style.visibility = "Hidden";	
	}
	
	function ShowPopupBlock(hoveritem)
	{
		hp = document.getElementById("hoverpopupBlock");
		
		// Set popup to visible
		hp.style.top = hoveritem.offsetTop + 500;
		hp.style.left = hoveritem.offsetLeft + 300;

		hp.style.visibility = "Visible";
	}

	function HidePopupBlock()
	{
		hp = document.getElementById("hoverpopupBlock");
		hp.style.visibility = "Hidden";	
	}

