function switchlanguage() {
	var spre = document.URL.substr(0,document.URL.length - 6)
	if (document.URL.charAt(document.URL.length - 6) == "e") {
		document.location = spre.concat("f.html");
	}else{document.location = spre.concat("e.html");}
}