function CheckAuswahl() {
 
 
 for(i=0;i<document.Ortswahl.Ort.length;++i)
  if(document.Ortswahl.Ort.options[i].selected == true)
   window.location.href =document.Ortswahl.Ort.options[i].value;
}


function anzeige() {
	var Id_Anzeige = "anzeige_";
	
	//Id_Anzeige= Id_Anzeige + (Math.floor(Math.random()*2));
	
	Id_Anzeige=Id_Anzeige+parseInt((Math.random()*100)%3);
	document.getElementById(Id_Anzeige).style.display="block";
	
}


function schliessen(Anzeige) {

	document.getElementById(Anzeige).style.display="none";
	
}

