// JavaScript Document
function montre(id)
{
		var element_style=null
		if (document.getElementById)
		{element_style=document.getElementById(id).style;}
		else if (document.all)
		{element_style=document.all[id].style;} 
		if(element_style)  {element_style.display="block";}
}
function cache(id)
{
		var element_style=null
		if (document.getElementById)
		{element_style=document.getElementById(id).style;}
		else if (document.all)
		{element_style=document.all[id].style;} 
		if(element_style)  {element_style.display="none";}
}
function lancerflash (url,largeur,hauteur,couleur,id)
{
var codeflash = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
+ 'WIDTH="' + largeur +' " HEIGHT="' + hauteur + '" ID="'+ id +'"' 
+ 'align="bottom">' 
+ '<PARAM NAME="MOVIE" VALUE="' + url + '">' 
+ '<PARAM NAME="PLAY" VALUE="true">' 
+ '<PARAM NAME="LOOP" VALUE="true">' 
+ '<PARAM name=bgcolor value = ' + couleur + '>' 
+ '<PARAM NAME="QUALITY" VALUE="high">' 
+ '<EMBED SRC="' + url + '"' 
+ 'NAME="' + id + '"' 
+ 'WIDTH="' + largeur +' " HEIGHT="' + hauteur + '"' 
+ 'PLAY="true"' 
+ 'LOOP="true"' 
+ 'QUALITY="high"' 
+ ' bgcolor=' + couleur 
+ 'TYPE="application/x-shockwave-flash"' 
+ 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">' 
+ '</EMBED>' 
+ '</OBJECT>' ; 
document.write(codeflash);
}
