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

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

function gochina(theFrame) {
if (movieIsLoaded(thisMovie(movieName02))) {
thisMovie(movieName02).GotoFrame(theFrame);
}
}