function insertion_flash(fichier, largeur, hauteur, image, texte, id)
{
  document.write('<object type="application/x-shockwave-flash" data="' + fichier + '" width="' + largeur + '" height="' + hauteur + '" id="' + id + '">\n');
  document.write('<param name="movie" value="' + fichier + '" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
  document.write('<img src="' + image + '" alt="' + texte + '" />\n');
  document.write('</object>\n');
}