//--------------------------------------------
// afficheFlash - V1.0 - EMC 20060817
// affiche un objet Flash sans besoin
// d'activation par l'utilisateur
//--------------------------------------------
function afficheFlash(v_flash, v_width, v_height) {
	s_retour = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + v_width + '" height="' + v_height + '">' ;
	s_retour = s_retour + '  <param name="movie" value="' + v_flash + '" />' ;
	s_retour = s_retour + '  <param name="quality" value="high" />' ;
	s_retour = s_retour + '  <param name="loop" value="true" />' ;
	s_retour = s_retour + '  <param name="wmode" value="transparent" />' ;
	s_retour = s_retour + '  <param name="base" value="." />' ;
	s_retour = s_retour + '  <embed src="' + v_flash + '" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + v_width + '" height="' + v_height + '"></embed>' ;
	s_retour = s_retour + '</object>' ;
	document.write(s_retour) ;
}
