// JavaScript Document//pour activation automatique de FLASH
function placerFlash(sClassId, sVersion, sName, sWidth, sHeight, sTitle) {

	document.write('<object classid="clsid:'+sClassId+'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+sVersion+'" width="'+sWidth+'" height="'+sHeight+'" title="'+sTitle+'">');
	document.write('<param name="movie" value="'+sName+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="vmode" value="transparent">');
	document.write('<embed src="'+sName+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+sWidth+'" height="'+sHeight+'" wmode="transparent">');
	document.write('</embed>');
	document.write('</object>');
  }