function JSEmbedSWF(swflink,swfwidth,swfheight,swfloop)
{
	// KB912945, doit être en script hors du fichier .html pour être activé automatiquement
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" ');
	document.write(' width='+swfwidth+' height='+swfheight+'>');
	document.write(' <param name=movie value="'+swflink+'"> <param name=loop value='+swfloop+'> <param name=menu value=false> <param name=quality value=high> <param name=bgcolor value=#FFFFFF>'); 
	document.write(' <embed src="'+swflink+'" loop='+swfloop+' menu=false quality=high bgcolor=#FFFFFF');
	document.write(' width='+swfwidth+' height='+swfheight+'');
	document.write(' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
	document.write(' </embed>');
	document.write(' </object>');
}