function changeLang (langue) {
	var url = document.location.href;
	if (langue == '1') {
//look allemand ou anglais et remplace par francais
		if (url.indexOf('allemand') != -1)
			url = url.replace('allemand', 'francais');
		else
			if (url.indexOf('anglais') != -1)
				url = url.replace('anglais', 'francais');
	}
	else 
		if (langue == '2' ) {
			if (url.indexOf('francais') != -1)
				url = url.replace('francais', 'allemand');
			else
				if (url.indexOf('anglais') != -1)
					url = url.replace('anglais', 'allemand');
		}
		else
			if (langue == '3' ) {
				if (url.indexOf('allemand') != -1)
					url = url.replace('allemand', 'anglais');
				else
					if (url.indexOf('francais') != -1)
						url = url.replace('francais', 'anglais');
		}
	window.location = url;
//allemand
}
