<!--

//FONCTIONS///////Julien Decam//////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////

//CHANGEMENT DE LA LANGUE DU FRANÇAIS À L'ANGLAIS///////////////////////////////////
//explication de (nomSection) - changements de nom pages fr vers en
//Le premier caractère est un L minuscule pas le chiffre 1
// l01: accueil
// l02: activites
// l03: partenaires
// l04: conseil-administration
// l05: portefeuille
// l06: politique-investissement
// l07: faire-une-demande
// l08: actualites
// l09: nous-joindre
////////////////////////////////////////////////////////////////////////////////////

function switchLangue(nomSection) {
	var pathActuel = window.location.href;

	if (nomSection == 'l01') var folderToSwitch = pathActuel.replace('/fr/','/en/');
	if (nomSection == 'l02') var folderToSwitch = pathActuel.replace('/fr/activites.htm','/en/activities.htm');
	if (nomSection == 'l03') var folderToSwitch = pathActuel.replace('/fr/partenaires.htm','/en/partners.htm');
	if (nomSection == 'l04') var folderToSwitch = pathActuel.replace('/fr/conseil-administration.htm','/en/board-of-directors.htm');
	if (nomSection == 'l05') var folderToSwitch = pathActuel.replace('/fr/portefeuille.htm','/en/portfolio.htm');
	if (nomSection == 'l06') var folderToSwitch = pathActuel.replace('/fr/politique-investissement.htm','/en/investment-policies.htm');
	if (nomSection == 'l07') var folderToSwitch = pathActuel.replace('/fr/faire-une-demande.htm','/en/how-to-apply.htm');
	if (nomSection == 'l08') var folderToSwitch = pathActuel.replace('/fr/actualites.htm','/en/news.htm');
	if (nomSection == 'l08a') var folderToSwitch = pathActuel.replace('/fr/nouvelles/','/en/news/');	
	if (nomSection == 'l09') var folderToSwitch = pathActuel.replace('/fr/nous-joindre.htm','/en/contact-us.htm');
	
	var newTextPath = folderToSwitch;	
	window.location = newTextPath;
}
//-->