	function hideall()
	{
	if (navigator.appName=="Microsoft Internet Explorer")
		{
		allgemeines.style.display="none"
		turniertanz.style.display="none"
		gesellschaft.style.display="none"
		turniere.style.display="none"
		}
	else
		{
		allgemeines.style.display="inline"
		turniertanz.style.display="inline"
		gesellschaft.style.display="inline"
		turniere.style.display="inline"
		}
	}
	
	function show3()
	{
	if (allgemeines.style.display=="none")
		{
		hideall()
		allgemeines.style.display="inline"		
		}
	else
		{
		allgemeines.style.display="none"	
		}
	}
	
	function show4()
	{
	if (turniertanz.style.display=="none")
		{
		hideall()
		turniertanz.style.display="inline"		
		}
	else
		{
		turniertanz.style.display="none"	
		}
	}
	
	function show5()
	{
	if (gesellschaft.style.display=="none")
		{
		hideall()
		gesellschaft.style.display="inline"		
		}
	else
		{
		gesellschaft.style.display="none"	
		}
	}
	
	function show6()
	{
	if (turniere.style.display=="none")
		{
		hideall()
		turniere.style.display="inline"		
		}
	else
		{
		turniere.style.display="none"	
		}
	}
	


