//Datei FindeFlash.js

  function findeFlash (flash) {
    if (document.all) {
      if (document.all[flash]) {
        return document.all[flash];
      }
      if (window.opera) {
        var movie = eval(window.document + flash);
        if (movie.SetVariable) {
          return movie;
        }
      }
      return;
    }
    if(document.layers) {
      if(document.embeds) {
        var movie = document.embeds[flash];
        if (movie.SetVariable) {
          return movie;
        }
      }
      return;
    }
    if (!document.getElementById) {
      return;
    }
    var movie = document.getElementById(flash);
    if (movie.SetVariable) {
      return movie;
    }
    var movies = movie.getElementsByTagName('embed');
    if (!movies || !movies.length) {
      return;
    }
    movie = movies[0];
    if (movie.SetVariable) {
      return movie;
    }
    return;
  }
  
  function abspielen () {
  var movie = findeFlash('fanfare');
  movie.SetVariable('autostart', 'yes');
  movie.Rewind();
}

 function reset () {
  var movie = findeFlash('fanfare');
  movie.SetVariable('autostart', 'no');
  movie.Rewind();
}

 function play () {
  var movie = findeFlash('fanfare');
  movie.play();
  movie.Rewind();
}

// NavigationsPfeil RollOver


		if(document.images) {
		navpic = new Array();
		navpic[0] = new Image();
		navpic[0].src = "fileadmin/images/spacer.gif";
		navpic[1] = new Image();
		navpic[1].src = "fileadmin/images/pfeil.gif";
		}
		
		function nav_hilo(num,imgname) {
		if(document.images) {
		document[imgname].src = navpic[num].src;
		}
		}