function changeLanguage(newLang) {
	var tmpTab = document.URL.split("/");
	var file = tmpTab[tmpTab.length - 1];
	window.location.href = "../" + newLang + "/" + file;
}