//redirección con parametros
function countryContent(idCountry,idSub){
   
    document.location.href="activeCountry.html?x="+idCountry+"&sub="+idSub;
    
}

function countryContentClubes(idCountry,idSub, type){
   
    document.location.href="activeCountry.html?x="+idCountry+"&sub="+idSub+"&type="+type;
    
}

function countryContent_new(idCountry,idSub, idMedia){
   
    document.location.href="activeCountry.html?x="+idCountry+"&sub="+idSub+"&id="+idMedia;
    
}

function competitionContent_new(idSeason,idSub, idMedia, type){
   
    document.location.href="activeCompetition.html?x="+idSeason+"&sub="+idSub+"&id="+idMedia+"&type="+type;
    
}

function competitionContent(idCompetition,idSub){
   
    document.location.href="activeCompetition.html?x="+idCompetition+"&sub="+idSub;
    
}

function competitionContent2(idCompetition,idSub, idType){
   
    document.location.href="activeCompetition.html?x="+idCompetition+"&sub="+idSub+"&type="+idType;
    
}

function competitionSelectContent(idCompetition){
   var idCompetition=document.getElementById("selectCompetition").value;
   document.location.href="activeCompetition.html?x="+idCompetition+"&type=1";   
}

function seasonSelectContent(idSeason){
   var idSeason=document.getElementById("selectSeason").value;
   document.location.href="activeCompetition.html?x="+idSeason+"&type=2";   
}

