function show_flash(adresse,largeur,hauteur,wmode){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+largeur+'" height="'+hauteur+'">');
	document.write('<param name="movie" value="'+adresse+'">');
	document.write('<param name="wmode" value="'+wmode+'">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="'+adresse+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+largeur+'" height="'+hauteur+'" wmode="'+wmode+'"></embed>');
	document.write('</object>');
}

function show_video(adresse,largeur,hauteur,wmode){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+largeur+'" height="'+hauteur+'" title="SYNERVIAL">');
	document.write('<param name="movie" value="util/FLVPlayer_Progressive.swf">');
	document.write('<param name="salign" value="lt">');
	document.write('<param name="wmode" value="'+wmode+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="scale" value="noscale" >');
	document.write('<param name="FlashVars" value="&MM_ComponentVersion=1&skinName=util/Clear_Skin_1&streamName='+adresse+'&autoPlay=true&autoRewind=false">');
	document.write('<embed src="util/FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=util/Clear_Skin_1&streamName='+adresse+'&autoPlay=true&autoRewind=false" quality="high" scale="noscale" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+largeur+'" height="'+hauteur+'" wmode="'+wmode+'"></embed>');
	document.write('</object>');
}