function showTab(id)
{
	// Alle anderen Tabs ausblenden.
	var tabs = document.getElementById('tabs');
	var chooser = document.getElementById('chooser');
	for(var i = 0; i < tabs.childNodes.length; i++)
	{
		if((tabs.childNodes[i].nodeName == 'DIV') && (tabs.childNodes[i] != chooser))
		{
			tabs.childNodes[i].style.display = 'none';
		}
	}

	// Die Links nicht unterstreichen.
	for(var i = 0; i < chooser.childNodes.length; i++)
	{
		if(chooser.childNodes[i].nodeName == 'A')
		{
			chooser.childNodes[i].style.textDecoration = 'none';
		}
	}

	// Das aktuelle Tab anzeigen.
	var eltTab = document.getElementById('tab' + id);
	eltTab.style.display = '';

	// Den aktuellen Link unterstreichen.
	var eltChoose = document.getElementById('choose' + id);
	if(eltChoose != null)
	{
		eltChoose.style.textDecoration = 'underline';
	}

	return false;
}

