function affiche_histoire(num) {
 titre=[
 "Histoire du jeu d'échecs",
 "Histoire de José Raoul Capablanca",
 "Histoire de Paul Morphy",
 "Histoire de Gary Kasparov"
 ];

 document.write('<br><table border=1 cellspacing=1 cellpadding=0 background="/img/fond2.jpg">');
 document.write('<tr><th width=500 background="/img/fond4.jpg" class=moyen>Histoire des échecs</th></tr>');
 document.write('<tr><td width=500>');
 document.write('L\'histoire des échecs vu par Vincent Maris:');
 temp='<img src="/img/fleche.gif" width=10 height=8 border=0 align=bottom hspace=2>'+titre[0];
 if (num!=0) {temp='<a href="../echecs/histoire.html">'+temp+'</a>';} else {temp='<b>'+temp+'</b>';}
 document.write('<br>'+temp);

 temp='<img src="/img/fleche.gif" width=10 height=8 border=0 align=bottom hspace=2>'+titre[1];
 if (num!=1) {temp='<a href="../echecs/histoire-capablanca.html">'+temp+'</a>';} else {temp='<b>'+temp+'</b>';}
 document.write('<br>'+temp);

 temp='<img src="/img/fleche.gif" width=10 height=8 border=0 align=bottom hspace=2>'+titre[2];
 if (num!=2) {temp='<a href="../echecs/histoire-morphy.html">'+temp+'</a>';} else {temp='<b>'+temp+'</b>';}
 document.write('<br>'+temp);

 temp='<img src="/img/fleche.gif" width=10 height=8 border=0 align=bottom hspace=2>'+titre[3];
 if (num!=3) {temp='<a href="../echecs/histoire-kasparov.html">'+temp+'</a>';} else {temp='<b>'+temp+'</b>';}
 document.write('<br>'+temp);

 document.write('</td></tr>');
 document.write('</table>');
}
