// JavaScript Document
function displayFlash(swf, id, hauteur, largeur, alternatif, wmode, flashvars)
{
	document.write('<object id="'+id+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" data="'+swf+'" width="'+hauteur+'" height="'+largeur+'" style="z-index=1; margin:0">');
	document.write('<param name="movie" value="'+swf+'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="wmode" value="'+wmode+'" />');
	document.write('<param name="FlashVars" value="'+flashvars+'" />');
	document.write(alternatif);
	document.write('</object>');
}
