function listTags(country,tag,specialite,agent,type)
{
    var url = location.href;
    var urlArray = url.split("/");
    
    if(tag != null && tag != '') tagVal = "/theme/"+tag;
    else tagVal = '';
    
    if(specialite != null && specialite != '') specialVal = "/specialite/"+specialite;
    else specialVal = '';
    
    if(type != null && type != '') typeVal = "/type/"+type;
    else typeVal = '';
    
    if(agent != null && agent != 0) agentVal = "/agent/"+agent;
    else if (agent == null || agent == 0) agentVal = "";
    else if (agent == null && urlArray[5] == 'agent') agentVal = "/agent/"+urlArray[6];
    
    var newUrl = newUrl = BASE_URL+"itineraires";
    
    if(country != null && country != '')
    {
        newUrl = BASE_URL+country +"/itineraires"+agentVal+tagVal+specialVal+typeVal;
    }
    else if (agentVal!= '' && tagVal!= '' || specialVal!= '' && tagVal!= '' || typeVal != '' && tagVal!= '')
    {
        newUrl = BASE_URL+tagVal+"/itineraires"+specialVal+typeVal+agentVal;
    }
    else if(agentVal!= '' || typeVal != '')
    {
        newUrl = BASE_URL+"itineraires"+agentVal+typeVal;
    }
    
    window.location.href =  newUrl;
}

function changePhoto(path)
{
    $("#bigPhoto").html("<img src='"+path+"' width='412' height='266'/>");
}