<!--
function goCountrySite2() {

    var number = document.form1.country.selectedIndex;
	var site = document.form1.country.options[number].value;

	if (site == "") {
		alert("Please select a Country first.");
	}
	else {
		location.href = site;

	}
}
// -->

