﻿
var serverlistid = "";
function setCountryState() {
    try {
        var CountryStr = document.getElementById("CountryStr");
        var CountryAll = document.getElementById("CountryAll");
        //var Country = document.getElementById("GoldBusinessServerList1_txt_Country").value;
        var GameID = document.getElementById(serverlistid + "txt_GameID").value;
        if (GameID == 2) {
            CountryAll.style.display = "block";
            CountryStr.style.display = "block";
        }
        else {
            CountryAll.style.display = "none";
            CountryStr.style.display = "none";
        }
    }
    catch (e) {
    }
}
