// JavaScript Document
function flash(nom,larg,haut,adress,fichier)
{
	//alert(nom);
	document.write('<object type="application/x-shockwave-flash" data="'+nom+'" width='+larg+' height='+haut+'>\n');
	document.write('<param name="wmode" value="Transparent">\n');
	document.write('<param name="movie" value="'+nom+'">\n');
//	document.write('<param name="flashvars" value="'+adress+'">\n');
	document.write('<param name="flashvars" value="'+fichier+'">\n');	
	document.write('<param name="quality" value="high">\n');
	document.write('<param name="menu" value="false">\n');
	document.write('</object>\n');
}

function flash2(nom,larg,haut,adress1,adress2)
{
	//alert(nom);
	document.write('<object type="application/x-shockwave-flash" data="'+nom+'" width='+larg+' height='+haut+'>\n');
	document.write('<param name="wmode" value="Transparent">\n');
	document.write('<param name="movie" value="'+nom+'">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<param name="menu" value="false">\n');
	document.write('</object>\n');
}

function flash3(nom,larg,haut)
{
	//alert(nom);
	document.write('<object type="application/x-shockwave-flash" data="'+nom+'" width='+larg+' height='+haut+'>\n');
	//document.write('<param name="wmode" value="Transparent">\n');
	document.write('<param name="movie" value="'+nom+'">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<param name="menu" value="false">\n');
	document.write('<param name="wmode" value="opaque">\n');
	document.write('</object>\n');
}

function maj(nom)
{
	//alert(nom);
	document.getElementById(nom).value = 'O';
	//document.write('<param name="wmode" value="Transparent">\n');
}
