function showmorecountries(string)
    {
        var item = string;
        var showlist = document.getElementById('show_more_countries');
        var showlisttext = document.getElementById('show_more_countries-option');
        var hidelisttext = document.getElementById('hide_more_countries-option');
        if (item == 1)
            {
                showlist.style.display = "block";
                hidelisttext.style.display = "block";
                showlisttext.style.display = "none";
            } else {
                showlist.style.display = "none";
                showlisttext.style.display = "block";
                hidelisttext.style.display = "none";
            }                
    }
    
function showmorecountriesHoriz(string)
    {
        var item = string;
        var showlist = document.getElementById('show_more_countries_horiz');
        var showlisttext = document.getElementById('show_more_countries-option');
        var hidelisttext = document.getElementById('hide_more_countries-option');
        if (item == 1)
            {
                showlist.style.display = "block";
                hidelisttext.style.display = "block";
                showlisttext.style.display = "none";
            } else {
                showlist.style.display = "none";
                showlisttext.style.display = "block";
                hidelisttext.style.display = "none";
            }                
    }