//CHANGEMENT DE LA LANGUE DU FRANÇAIS À L'ANGLAIS///////////////////////////////////
//explication de (nomSection) - changements de nom pages en vers fr
//
// 01: accueil
// 02: technologie
// 03: applications
// 04: produits
// 05: notre entreprise
// 06: assistance
// 07: nous joindre
// 08: nouvelles
// 09: événements
// 10: 
// 11: 
////////////////////////////////////////////////////////////////////////////////////
function switchLangue(nomSection) {
	var pathActuel = window.location.href;

	if (nomSection == 'L01') var folderToSwitch = pathActuel.replace('/opsens_fr.php','/opsens_ang.php');
	if (nomSection == 'L02') var folderToSwitch = pathActuel.replace('/technologies.html','/technology.html');
	if (nomSection == 'L03') var folderToSwitch = pathActuel.replace('/applications_fr.html','/applications.html');
	if (nomSection == 'L04') var folderToSwitch = pathActuel.replace('/produits.html','/product.html');
	if (nomSection == 'L05') var folderToSwitch = pathActuel.replace('/apropos.html','/aboutus.html');
	if (nomSection == 'L06') var folderToSwitch = pathActuel.replace('/support_fr.html','/support.html');
	if (nomSection == 'L07') var folderToSwitch = pathActuel.replace('/nous_joindre.php','/contact.php');
	if (nomSection == 'L08') var folderToSwitch = pathActuel.replace('/news_fr.php','/news_ang.php');
	if (nomSection == 'L09') var folderToSwitch = pathActuel.replace('/events_fr.php','/events_ang.php');
	if (nomSection == 'L10') var folderToSwitch = pathActuel.replace('/investisseurs.html','/investors.html');
	
	var newTextPath = folderToSwitch;	
	window.location = newTextPath;
}
//-->

