// JavaScript Document
function updateFlash(moviename,frame){
	if(thisMovie(moviename).TCurrentLabel("_root/") != frame){
		thisMovie(moviename).TGotoLabel("_root/",frame);
		thisMovie(moviename).Play();
	}
}
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]
  }
}