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

