

function openWin (url , width , height) {

 

 var paramstr = 'width='+width+',height='+height+',status=no,scrollbars=no,resizeable=no';



 fenster = window.open(url, "Popup", paramstr );

 fenster.focus();

}
















 function loadmovie(id,vars,value)

 {

    var movie = findeFlash(id);

    movie.SetVariable(vars,value);

 }

 

 

 

 

 

 

   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;

  }

  

  

  

 

 

 