function countryFormHandler(form){
	var URL = document.form.location.options[document.form.location.selectedIndex].value;
	if (URL != "") {
		window.open(URL);
	}
}