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 golabelAlsace() {
  if (movieIsLoaded(thisMovie(movieName))) {
  	if ((document.images.name)="alsace"){
    thisMovie(movieName).TGotoLabel("_level0/","alsace");
	}
}
}
function golabelBrittany() {
  if (movieIsLoaded(thisMovie(movieName))) {
	if ((document.images.name)="brittany"){
    thisMovie(movieName).TGotoLabel("_level0/","britanny");
	}
}
}
function golabelBurgundy() {
  if (movieIsLoaded(thisMovie(movieName))) {
	if ((document.images.name)="burgundy"){
    thisMovie(movieName).TGotoLabel("_level0/","burgundy");
	}
}
}
function golabelDordogne() {
  if (movieIsLoaded(thisMovie(movieName))) {
	if ((document.images.name)="dordogne"){
    thisMovie(movieName).TGotoLabel("_level0/","dordogne");
	}
}
}
function golabelNormandy() {
  if (movieIsLoaded(thisMovie(movieName))) {	
		if ((document.images.name)="normandy"){
    thisMovie(movieName).TGotoLabel("_level0/","normandy");
	}
}
}
function golabelChampagne() {
  if (movieIsLoaded(thisMovie(movieName))) {	
		if ((document.images.name)="champagne"){
    thisMovie(movieName).TGotoLabel("_level0/","champagne");
	}
	
}
}
function golabelProvence() {
  if (movieIsLoaded(thisMovie(movieName))) {
	if ((document.images.name)="provence"){
   thisMovie(movieName).TGotoLabel("_level0/","provence");
}
	
  }
}


