function montre(id)
{
  document.getElementById(id).style.display="block";
  document.getElementById('montre' + id).style.display="none";
  document.getElementById('cache' + id).style.display="block";
}

function cache(id)
{
  document.getElementById(id).style.display="none";
  document.getElementById('montre' + id).style.display="block";
  document.getElementById('cache' + id).style.display="none";
}

function reload(img)
{
  document.camembert.src = img;
}

function focusDansTexte()
{
  CurrentForm = document.forms['FormulaireRecherche'];
  
  var rech = CurrentForm.elements['nom_sportif'];
  rech.focus();
}

function focusDansTexteEquipe()
{
  CurrentForm = document.forms['FormulaireRecherche'];
  
  var rech = CurrentForm.elements['equipe'];
  rech.focus();
}

function showIt(id) {
    var thisClose = document.getElementById('details'+id);
    thisClose.style.display = 'block';
}

function hideIt(id) {
    var thisClose = document.getElementById('details'+id);
    thisClose.style.display = 'none';
}


