﻿$(document).ready(function() {

    $$("SportId").change(function() {
        var SportId = $(this).val();
        window.location.href = 'GameResult.aspx?SportId=' + SportId;
    });

    $$("CountryId").change(function() {
        var CountryId = $(this).val();
        var Date = $$("Date").val();
        window.location.href = 'GameResult.aspx?CountryId=' + CountryId + '&Date=01/01/1900';
    });

    $$("TeamId").change(function() {
        var TeamId = $(this).val();
        var CountryId = $$("CountryId").val();
        var Date = $$("Date").val();
        window.location.href = 'GameResult.aspx?TeamId=' + TeamId + '&CountryId=' + CountryId + '&Date=' + Date;
    });

    $$("Date").change(function() {
        var Date = $(this).val();
        var CountryId = $$("CountryId").val();
        var TeamId = $$("TeamId").val();
        window.location.href = 'GameResult.aspx?TeamId=' + TeamId + '&CountryId=' + CountryId + '&Date=' + Date;
    });

});

