//CHANGEMENT DE LA LANGUE DE L'ANGLAIS AU FRANÇAIS///////////////////////////////////
//explication de (nomSection) - changements de nom pages en vers fr
////////////////////////////////////////////////////////////////////////////////////
function switchLangue(nomSection) {
	var pathActuel = window.location.href;

	if (nomSection == 'L01') var folderToSwitch = pathActuel.replace('/opsens_ang.php','/opsens_fr.php');
	if (nomSection == 'L02') var folderToSwitch = pathActuel.replace('/technology.html','/technologies.html');
	if (nomSection == 'L03') var folderToSwitch = pathActuel.replace('/applications.html','/applications_fr.html');
	if (nomSection == 'L04') var folderToSwitch = pathActuel.replace('/product.html','/produits.html');
	if (nomSection == 'L05') var folderToSwitch = pathActuel.replace('/aboutus.html','/apropos.html');
	if (nomSection == 'L06') var folderToSwitch = pathActuel.replace('/support.html','/support_fr.html');
	if (nomSection == 'L07') var folderToSwitch = pathActuel.replace('/contact.php','/nous_joindre.php');
	if (nomSection == 'L08') var folderToSwitch = pathActuel.replace('/news_ang.php','/news_fr.php');
	if (nomSection == 'L09') var folderToSwitch = pathActuel.replace('/events_ang.php','/events_fr.php');
	if (nomSection == 'L10') var folderToSwitch = pathActuel.replace('/investors.html','/investisseurs.html');
	
	var newTextPath = folderToSwitch;	
	window.location = newTextPath;
}
//-->
