// redirection FR-EN
var loc = window.location;
	var pathname = loc.pathname;
	
	
	function newhref(curdir, newdir){
		 
		var newpath = pathname.replace(curdir,newdir);
		
		window.location.href = newpath;
	}
	