/************** Affichage des mots-clés du timbre dans un cadre **************/
function MotsClesTimbre(id,idx,Texte,Fond,CoulTexte,CoulSoulign)
{
 document.write('<div id="'+id+'" style="font-family:Arial,Helvetica,Sans Serif;font-size:12px;position:absolute;z-index:'+idx+';visibility:hidden;width:180px;">\n');
 document.write(' <table cellpadding="2px" cellspacing="0px" border="0px" bgcolor="'+CoulTexte+'" width="100%">\n');
 document.write(' <tr>\n');
 document.write('  <td>\n');
 document.write('   <table cellpadding="2px" cellspacing="0px" border="0px" bgcolor="'+Fond+'">\n');
 document.write('    <tr>\n');
 document.write('     <td align="center" height="12px" style="color:'+CoulSoulign+';font-family:Arial,Helvetica,Sans Serif;font-size:12px;">\n');
 document.write('     '+Texte+'\n');
 document.write('     </td>\n'); 
 document.write('    </tr>\n');
 document.write('   </table>\n');
 document.write('  </td>\n');
 document.write(' </tr>\n');
 document.write('</table>\n');
 document.write('</div>');
}
