//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//++  Blaettern in Registerkarten
//++  Parameter: Name des geklickten Tabs
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function selectTab(name)
{
	var suffix = "";
	
	if(document.getElementById(tabs[0]+'Div') == null){
		suffix = "Pf";
	}
	
	for(i=0; i<tabs.length; i++)
	{	  
		SetStyleDysplayIfExists(tabs[i]+'Div'+suffix, 'none');
		SetClassNameIfExists(tabs[i]+'TabStart', 'tabInActiveStart');
		SetClassNameIfExists(tabs[i]+'TabText', 'tabInActiveText');
		SetClassNameIfExists(tabs[i]+'TabEnd', 'tabInActiveEnd');
	}
	SetStyleDysplayIfExists(name+"Div"+suffix, 'block');
	SetClassNameIfExists(name+'TabStart', 'tabActiveStart');
	SetClassNameIfExists(name+'TabText', 'tabActiveText');
	SetClassNameIfExists(name+'TabEnd', 'tabActiveEnd');
	}

function SetStyleDysplayIfExists(Name, DisplayStyle)
{
  e = document.getElementById(Name);
  if (e != null)
   e.style.display=DisplayStyle;
}

function SetClassNameIfExists(Name, ClassName)
{
  e = document.getElementById(Name);
  if (e != null)
   e.className = ClassName;  
}