var s_show = false;
//Browserweiche
var s_browser="";

if (document.all)
  s_browser="IE";
else if (document.layers)
  s_browser="NS";
else if (document.getElementById)
 s_browser="W3C";

function tooltipOn()
{ 
	s_show = true; 
	switch(s_browser)
	{
		case "NS":
		{
			document.flashpopup.style.visibility = "visible";
			break;
		}
		case "W3C":
		{
			document.getElementById("flashpopup").style.visibility = "visible";
			break;
		}
		case "IE":
		{
			document.all.flashpopup.style.visibility = "visible";
			break;
		}
	}
}

function tooltipOff() 
{ 
	s_show = false; 
	switch(s_browser)
	{
		case "NS":
		{
			document.flashpopup.style.visibility = "hidden";
			break;
		}
		case "W3C":
		{
			document.getElementById("flashpopup").style.visibility = "hidden";
			break;
		}
		case "IE":
		{
			document.all.flashpopup.style.visibility = "hidden";
			break;
		}
	}
}

