/////////////////////////////////////
//  COMPTER LES CARACTERES SAISIS  //
/////////////////////////////////////

function compterCaracteres(champ, compteur, limite)
{
 compteur.value = '(' + champ.value.length + '/' + limite + ' caractères conseillés)';
}
