function changeLocale(selection){
	if (selection.value == 'chinese'){
		window.open("../index.aspx", "_self");
	}else{
		window.open("../index.aspx", "_self");
	}
}


function changeLocaleFromRoot(selection){
	if (selection.value == 'english'){
		window.open("../index.aspx", "_self");
	}else if (selection.value == 'chinese'){
		window.open("index.html", "_self");
	}else{
		window.open("index.aspx", "_self");
	}
}
