<!--
// Auteur : Frédéric MAIRE (c) 1997 All right reserved
var ic, it;
  for (ic=1; ic<kMaxCoul+1; ic++) {
    document.writeln( '<tr>');
    for (it=1; it<kMaxTrou+1; it++) {
      document.writeln( '<td><a href="javascript:choixCoul('+it+','+ic+')" ');
      document.writeln( '  onMouseOver="choixCoulOver('+it+','+ic+')" ');
      document.writeln( '  onMouseOut="choixCoulOut('+it+','+ic+')" ><img src="./fiche'+ic+'.gif" width=32 height=32></a></td>');
    }
    document.writeln( '</tr>');
  }
  ic = 0
    document.writeln( '<tr>');
    for (it=1; it<kMaxTrou+1; it++) {
      document.writeln( '<td><a href="javascript:choixCoul('+it+','+ic+')" ');
      document.writeln( '  onMouseOver="choixCoulOver('+it+','+ic+')" ');
      document.writeln( '  onMouseOut="choixCoulOut('+it+','+ic+')" ><img src="./hole.gif" width=32 height=32></a></td>');
    }
    document.writeln( '</tr>');
//-->
