function navigate(choice) {
	var url = choice.options[choice.selectedIndex].value;
	if (url!="") {
		window.open(url);
	}
}
function goLang(choice) {
	var url = choice.options[choice.selectedIndex].value;
	if (url!="") {
		window.location.href = url;
	}
}
