<!--
// Auteur : Frédéric MAIRE (c) 1997 All right reserved

  for (i=0; i<kMaxEssai+1; i++) {
    if (i==kMaxEssai) {
    document.writeln( '<tr></tr>');
    document.writeln( '<tr>');
    document.writeln( '<td></td>');
    document.writeln( '<td></td>');
    document.writeln( '<td></td>');
    } else {
    document.writeln( '<tr align=center>');
    document.writeln( '<td width=20>'+eval(i+1)+'</td>');
    document.writeln( '<td>'); 
    document.writeln( '    <table cellpadding=0 border=0>');
    document.writeln( '    <tr>');
    for (ic=0; ic<((kMaxTrou+1)>>1); ic++) {
      document.writeln( '    <td><img src="./shole.gif" width=16 height=16></td>');
    }
    document.writeln( '    </tr>');
    document.writeln( '    <tr>');
    for (ic=0; ic<kMaxTrou>>1; ic++) {
      if (!(ic==kMaxTrou-1 && (kMaxTrou & 1)!=0)) {
      document.writeln( '    <td><img src="./shole.gif" width=16 height=16></td>');
      }
    }
    document.writeln( '    </tr>');
    document.writeln( '    </table>');
    document.writeln( '</td>');
    document.writeln( '<td></td>');
    }
    for (ic=0; ic<kMaxTrou; ic++) {
      if (i!=kMaxEssai) {
        document.writeln( '<td><img src="./hole.gif" width=32 height=32></td>');
      } else {
        document.writeln( '<td><img src="./fvide.gif" width=32 height=32></td>');
      }
    }
    document.writeln( '</tr>');
  }
//-->
