
//Ligne du tableau en évidence
function changeCouleur(ligne)
  {
  ligne.bgColor = '#FFC0C0';
  }
function remetCouleur(ligne)
  {
  ligne.bgColor = '';
  }


//Validation du partenaire
function confirmation_partenaire()
{
if (document.getElementById("choix_partenaire_duo").value==0)
{
alert('Vous devez choisir un partenaire');
}
else
if (confirm('Êtes-vous certain ?'))
{
document.modif_tm_partenaire.submit();
}
}


//donne le focus à un champ
function donner_focus(chp)
{
document.getElementById(chp).focus();
}



function retour()
{
history.go(-1);
}
