// Javascript file for Image Map of World

function countryOn(countryId){
    var countryName = countryId;
    document.getElementById(countryName).className = 'show';
}

function countryOff(countryId){
    var countryName = countryId;
    document.getElementById(countryName).className = 'hide';
}

// End of JS file
