var fl = new FixturesLive();

function FixturesLive(){

    this.ShowPlayer = function(id){
        navigate('PMD_UserOverview.ashx?sportID=13&id='+id);
        this.ShowFLPopup();
    }
    
    this.ShowClub = function(id){
        navigate('clubs_teams.ashx?clubid='+id);
        this.ShowFLPopup();
    }
    
    this.ShowDivision = function(id){
        navigate('comp_view.ashx?DivisionID='+id);
        this.ShowFLPopup();
    }

    this.ShowClubInfo = function(id){
        navigate('club_info.ashx?ClubID='+id);
        this.ShowFLPopup();
    }    

    this.ShowMatchSheet = function(id){
        navigate('PMD_WhoTookPart.ashx?fixtureid='+id);
        this.ShowFLPopup();
    }  

    
    /* Show the FL Popup screen */
    this.ShowFLPopup = function(){
       e.ModalPopup.Show('divFLPopup');
    }


}


