﻿$(document).ready(function() {

$$("GameScheduleCountry").change(function() {
    var CountryId = $(this).val();
    if (CountryId > 0)
        window.location.href = 'Default.aspx?GameScheduleCountryId=' + CountryId;
    else
        window.location.href = 'Default.aspx';
});

$$("Standings").change(function() {
    var StandingsId = $(this).val();
    window.location.href = 'Default.aspx?StandingsId=' + StandingsId;

});

$('#CountryInfo').change(function() {
    var CountryId = $(this).val();
    if (CountryId > 0)
        window.location.href = 'CountryInfo.aspx#' + CountryId;
});


});

