function insert_flash(fichier,width,height,texte,variables)
{
	document.write('<object type="application/x-shockwave-flash" data="'+fichier+'" width="'+width+'" height="'+height+'">');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<param name="movie" value="'+fichier+'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="flashvars" value="'+variables+'" />');
	document.write('<param name="menu" value="false" />');
	document.write('<div>'+texte+'</div>');
	document.write('</object>');
}
