/* - Navigation de chapitre en chapitre  - */
/* - Uniquement prévu dans le sens avant - */
function allerVersEL01() {
	document.location = "../2-vol-en-palier/eq-avion-vol-en-palier.cfm";
}

function allerVersEL02() {
	document.location = "../3-variation-des-forces/variations-des-forces.cfm";
}

function allerVersEL03() {
	document.location = "../4-effets-des-gouvernes/effets-des-gouvernes.cfm";
}

/* - Ouverture du popup avec la page correspondante -*/
function ouvrirFenetreFondamentaux() {
	window.open("../complements/fondamentaux.cfm", "popup_eole", "width=755,height=440,scrollbars=yes,resizable=yes");
}

function ouvrirFenetreStructure() {
	window.open("../complement-structure/structure-avion.cfm", "popup_eole", "width=755,height=440,scrollbars=yes,resizable=yes");
}

function ouvrirFenetreLexique() {
	window.open("../complements/lexique.cfm", "popup_eole", "width=755,height=440,scrollbars=yes,resizable=yes");
}

/* - Même chose depuis la page d'accueil - */
function ouvrirFenetreFondamentauxPA() {
	window.open("complements/fondamentaux.cfm", "popup_eole", "width=755,height=440,scrollbars=yes,resizable=yes");
}

function ouvrirFenetreStructurePA() {
	window.open("complement-structure/structure-avion.cfm", "popup_eole", "width=755,height=440,scrollbars=yes,resizable=yes");
}

function ouvrirFenetreLexiquePA() {
	window.open("complements/lexique.cfm", "popup_eole", "width=755,height=440,scrollbars=yes,resizable=yes");
}

/* - Navigation au sein du popup -*/
function allerVersFondamentaux() {
	document.location = "../complements/fondamentaux.cfm";
}

function allerVersStructure() {
	document.location = "../complement-structure/structure-avion.cfm";
}

function allerVersLexique() {
	document.location = "../complements/lexique.cfm";
}