function langchange(dest) {
	var currentUrl = window.location.href;
	var reg = new RegExp('/([^/]+)$');
	var newurl = currentUrl.replace(reg, '/'+dest);
	
	if (newurl == currentUrl) {
		alert('A copy of this article in another language could not be found. Une copie de cet article dans une autre langue n\'a pas pu être trouvée.');
	} else {
		window.location.href = newurl;
	}
	
}