function afficheFlash(version,nom,largeur,hauteur){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+version+',0,0,0" width='+largeur+' height='+hauteur+'>\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	document.write('<param name="movie" value='+nom+' />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('<embed src='+nom+' quality="high" wmode="transparent" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width='+largeur+' height='+hauteur+'></embed>\n');
	document.write('</object>\n');
}	

function afficheFlashMp3(version,nom,mp3,largeur,hauteur){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+version+',0,0,0" width='+largeur+' height='+hauteur+'>\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	document.write('<param name="movie" value='+nom+'?mp3='+mp3+' />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('<embed src='+nom+'?mp3='+mp3+' quality="high" wmode="transparent" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width='+largeur+' height='+hauteur+'></embed>\n');
	document.write('</object>\n');
}	

// ================================================ CENTRAGE VERTICAL PAGE ACCUEIL
function centrageVertical()
{
	hauteurPage = document.getElementById("repere").offsetTop + 1;
	hauteurContenu = 630;
	
	if(hauteurPage > hauteurContenu)
	{
		difference = hauteurPage - hauteurContenu;
		document.body.style.paddingTop = (difference/2) +"px";
		if (document.getElementById("bandeauFlash"))
		{
			document.getElementById("bandeauFlash").style.marginTop = ((difference/2)+177) +"px";
			document.getElementById("bandeauFlash").style.display= "block";
		}
	}
	else
	{
		document.body.style.paddingTop = 0;
		if (document.getElementById("bandeauFlash"))
		{
			document.getElementById("bandeauFlash").style.marginTop= 177 +"px";
			document.getElementById("bandeauFlash").style.display= "block";
		}
	}
}

function centrageVertical2()
{
	hauteurPage = document.getElementById("repere").offsetTop + 1;
	hauteurContenu = 630;
	
	if(hauteurPage > hauteurContenu)
	{
		difference = hauteurPage - hauteurContenu;
		document.body.style.paddingTop = (difference/2) +"px";
		document.getElementById("bandeauFlash").style.marginTop = ((difference/2)+177) +"px";
		document.getElementById("bandeauFlash").style.display= "block";
	}
	else
	{
		document.body.style.paddingTop = 0;
		document.getElementById("bandeauFlash").style.marginTop= 177 +"px";
		document.getElementById("bandeauFlash").style.display= "block";
	}
}
// ================================================ CENTRAGE VERTICAL PAGE ACCUEIL
