aktuelldiv = null;

function startRoute(label) {
	// starte Flash Movie mit richtiger Sprungmarke
	var movie = window.document.movie;
    movie.TGotoLabel("/", label);
	
	// setze Text (Anfahrtsbeschreibung)
	var url = "templates/" + label + ".php";
	var myAjax = new Ajax.Updater({success: 'textholder'},url);
	
	
	

  /* var textdiv = $(label);
  
  if (aktuelldiv != null) {
    aktuelldiv.style.visibility = "hidden";
  } 
  textdiv.style.visibility = "visible";
  aktuelldiv = textdiv;
  */
  	
}


