/**
 * wquadrat swf-kommunikationsfunktionen
 * bs, 20080222 version 0.1
 */
function thisMovie(movieName) {
  // IE and Netscape refer to the movie object differently.
  // This function returns the appropriate syntax depending on the browser.
  if (navigator.appName.indexOf ("Microsoft") !=-1) {
    return window[movieName]
  } else {
    return document[movieName]
  }
}
function aniJump(movieName, frame) {
    thisMovie(movieName).TGotoFrame("_level0/", frame) 
    return true;
}
function aniContinue(movieName) {
    thisMovie(movieName).TPlay("_level0/");
    return true;
}

