function switchLanguage()
{
	var newURL = window.location.href.replace("/" + document.getElementsByName("currentLanguage")[0].value + "/", "/" + document.getElementsByName("selectedLanguage")[0].value + "/");
	window.location.href = newURL;
}