﻿// JScript File

function fnRedirect()
{
    //alert('test');
    objCombo = document.getElementById("Header_cmbClub");
   
    
    //location.href = "Club.aspx?ClubID=" +  objCombo.options[objCombo.selectedIndex].value;
    location.href = objCombo.options[objCombo.selectedIndex].value;
}

function fnSubmitSearch()
{
    objPlayer = document.getElementById("txtPlayer");
    //alert("/Fansfcnew/search/" +  objPlayer.value);
    location.href = "/search/" +  objPlayer.value;
    return false;
}





