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

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

function gojadebell(theFrame) {
if (movieIsLoaded(thisMovie(movieName03))) {
thisMovie(movieName03).GotoFrame(theFrame);
}
}