function tdm(n) {

   window.document.write('<font color=blue>')
   window.document.write('Table de multiplication de ',n)
   window.document.write('<table>')
   window.document.write('<blockquote>')
   for (i = 1 ; i <= 10 ; i++) {
       window.document.writeln('<tr align=right>')
       window.document.writeln('<td align=right><font size=6 color="#008000"><b>',i,'</td>')
       window.document.writeln('<td align=right><font size=6> fois ',n,' = </td>')
       window.document.writeln('<td align=right><font size=6 color="#800000"><b> ',n*i,'</td>')
       window.document.writeln('</tr>')
   } // fin de pour
   window.document.write('</table>')
   window.document.write('</blockquote>')
   window.document.write('<a href="javascript:window.history.back()"><img src=return.gif></a>')
   window.document.write('</body></html>')

}  // fin de tdm
