function titre(texte)
{
document.write('<TABLE WIDTH=400 CELLPADDING=0 CELLSPACING=0 BORDER=0 BGCOLOR=#000000>');
document.write('<TR>');
document.write('<TD><TABLE WIDTH=100% CELLPADDING=3 CELLSPACING=1 BORDER=0>');
document.write('<TR>');
document.write('<TD WIDTH=10 BGCOLOR=#CC00CC ALIGN=center><FONT FACE="Verdana, Arial" SIZE=1 COLOR=#FFFFFF><B>-</B></FONT></TD>');
document.write('<TD WIDTH=360 BGCOLOR=#5979B6><FONT FACE="Verdana, Arial" SIZE=2 COLOR=#FFFFFF><B>');
document.write(texte);
document.write('</B></FONT></TD>');
document.write('</TR>');
document.write('</TABLE></TD>');
document.write('</TR>');
document.write('</TABLE>');
} 

