function switchLan() {
	var toURL

	toURL = new String(document.URL);
	if (toURL.match(/\/en\//)) {
		toURL = toURL.replace("/en/", "/fr/");
	} else if (toURL.match(/\/fr\//)) {
		toURL = toURL.replace("/fr/", "/en/");
	} else {
		toURL = "/fr/index.html";
	}

	window.location = toURL;
}
