
			var lastID = 0;
			var lastlevel= 0;
			var status = 0;
			
			
	function showID(name){
			//alert(status+'/'+name)
		if(lastID==name || lastID==0){
			if(status==0){
				document.getElementById(''+name).style.display='block';
			}
			if(status==1){
				document.getElementById(''+name).style.display='none';
			}
		}else{
			status=0;
			document.getElementById(''+name).style.display='block';
			document.getElementById(''+lastID).style.display='none';
		}
			
			status+=1
			status=status%2
			lastID = name;
		}

	function goTo(selection){
		//alert('huhu'+ selection);
		//alert(document.auswahl[selection].options[document.auswahl[selection].selectedIndex].value)
			ziel =  document.auswahl[selection].options[document.auswahl[selection].selectedIndex].value;
			//alert(ziel);
			location.href=ziel;
	}
	

	function goTo1(selection){
		//alert(selection);
		//alert('document.auswahl.'+selection+'.options.value');
		if(selection=="standort"){
			stadt = document.auswahl[selection].options.value;
			ziel = stadt +"/index.php";
			//alert(ziel);
			location.href=ziel;
		}
	}
		
		
			