var movieName = "leftnav";
var ImgNames = ['images/alsace.gif','images/brittany.gif', 'images/burgundy.gif', 'images/dordogne.gif', 'images/normandy.gif', 'images/champagne.gif', 'images/provence.gif'];
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]
  }
}

// Checks if movie is completely loaded.
// Returns true if yes, false if no.
function movieIsLoaded (theMovie) {
  if (typeof(theMovie) != "undefined") {
    return theMovie.PercentLoaded() == 100;
  } else {
    return false;
  }
}


function gomaplabelAlsace() {
  if (movieIsLoaded(thisMovie(movieName))) {
    thisMovie(movieName).TGotoLabel("_level0/","alsace");
}
}
function gomaplabelBrittany() {
  if (movieIsLoaded(thisMovie(movieName))) {
	    thisMovie(movieName).TGotoLabel("_level0/","britanny");
	}
}
function gomaplabelBurgundy() {
  if (movieIsLoaded(thisMovie(movieName))) {
    thisMovie(movieName).TGotoLabel("_level0/","burgundy");
	}
}
function gomaplabelDordogne() {
  if (movieIsLoaded(thisMovie(movieName))) {
    thisMovie(movieName).TGotoLabel("_level0/","dordogne");
	}
}
function gomaplabelNormandy() {
  if (movieIsLoaded(thisMovie(movieName))) {	
    thisMovie(movieName).TGotoLabel("_level0/","normandy");
	}
}
function gomaplabelChampagne() {
  if (movieIsLoaded(thisMovie(movieName))) {	
    thisMovie(movieName).TGotoLabel("_level0/","champagne");
	}
}
function gomaplabelProvence() {
  if (movieIsLoaded(thisMovie(movieName))) {
	thisMovie(movieName).TGotoLabel("_level0/","provence");
  }
}


