function jumpToCountry() {
    var countrySelect = document.getElementById("countrySelectForm").countrySelect;
    var country = countrySelect.options[countrySelect.selectedIndex].value;
    if (country) location.href = "#" + country;
}

function showBrandDetails(containerId) {
    var container = document.getElementById(containerId);
    container.className = "showBrandDetails";
}

function hideBrandDetails(containerId) {
    var container = document.getElementById(containerId);
    container.className = "hideBrandDetails";
}
