function movieRun(id, url) {
  var theMovieFrame = document.getElementById(id);
  theMovieFrame.src = url;
  return false;
}

