/*
    Reads the selected country from the dropdownlist then redirects to the url that is the
    value of the selected item
*/
function forwardToCountry() {
    var url = document.countryselectform.countryselect.options[document.countryselectform.countryselect.selectedIndex].value;
    window.location.href = url;
}
