function changeCountry () {
	for (i = 0; i < document.countryselector.selection.length; ++i) {
		if (document.countryselector.selection.options[i].selected == true) {
			if (document.URL.indexOf("?") == -1) {
				targetURL = document.URL+"?C="+document.countryselector.selection.options[i].value;
			} else {
				targetURL = document.URL+"&C="+document.countryselector.selection.options[i].value;
			}
			window.location.href = targetURL;
		}
	}
}

