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

