	function ShowQuadroText(hoveritem)
	{
		hp = document.getElementById("QuadroText");
		
		// Set popup to visible
		hp.style.visibility = "Visible";
	}

	function HideQuadroText()
	{
		hp = document.getElementById("QuadroText");
		hp.style.visibility = "Hidden";	
	}
	
		function ShowTeslaText(hoveritem)
	{
		hp = document.getElementById("TeslaText");
		
		// Set popup to visible
		hp.style.visibility = "Visible";
	}

	function HideTeslaText()
	{
		hp = document.getElementById("TeslaText");
		hp.style.visibility = "Hidden";	
	}
	
			function ShowBFPText(hoveritem)
	{
		hp = document.getElementById("BFPText");
		
		// Set popup to visible
		hp.style.visibility = "Visible";
	}

	function HideBFPText()
	{
		hp = document.getElementById("BFPText");
		hp.style.visibility = "Hidden";	
	}