<!--

//FONCTIONS///////Julien Decam//////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////

//CHANGEMENT DE LA LANGUE ANGLAISE AU FRANÇAIS   ///////////////////////////////////
//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('/en/','/fr/');
	if (nomSection == 'l02') var folderToSwitch = pathActuel.replace('/en/activities.htm','/fr/activites.htm');
	if (nomSection == 'l03') var folderToSwitch = pathActuel.replace('/en/partners.htm','/fr/partenaires.htm');
	if (nomSection == 'l04') var folderToSwitch = pathActuel.replace('/en/board-of-directors.htm','/fr/conseil-administration.htm');
	if (nomSection == 'l05') var folderToSwitch = pathActuel.replace('/en/portfolio.htm','/fr/portefeuille.htm');
	if (nomSection == 'l06') var folderToSwitch = pathActuel.replace('/en/investment-policies.htm','/fr/politique-investissement.htm');
	if (nomSection == 'l07') var folderToSwitch = pathActuel.replace('/en/how-to-apply.htm','/fr/faire-une-demande.htm');
	if (nomSection == 'l08') var folderToSwitch = pathActuel.replace('/en/news.htm','/fr/actualites.htm');
	if (nomSection == 'l08a') var folderToSwitch = pathActuel.replace('/en/news/','/fr/nouvelles/');
	if (nomSection == 'l09') var folderToSwitch = pathActuel.replace('/en/contact-us.htm','/fr/nous-joindre.htm');
	
	var newTextPath = folderToSwitch;	
	window.location = newTextPath;
}
//-->