var movieName08 = "film_atremendouslife";
function thisMovie(movieName08) {
  // 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[movieName08]
  }	else {
    return document[movieName08]
  }
}

// Checks if movie is completely loaded.
// Returns true if yes, false if no.
function movieIsLoaded (movieName08) {
  if (typeof(movieName08) != "undefined") {
    return movieName08.PercentLoaded() == 100;
  } else {
    return false;
  }
}

function goatremendouslife(theFrame) {
if (movieIsLoaded(thisMovie(movieName08))) {
thisMovie(movieName08).GotoFrame(theFrame);
}
}