function displayFlash(swf, hauteur, largeur, alternatif)
{
	document.write('<object type="application/x-shockwave-flash" data="'+swf+'" width="'+hauteur+'" height="'+largeur+'">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+swf+'" />');
	document.write(alternatif);
	document.write('</object>');
}

function couleur(obj) {
     obj.style.backgroundColor = "#e9ede8";
}  

function affiche_contact(ref,nb)
  {
	var nom_div1='contact' + nb;	var cont_div1='<iframe border="0" frameborder="0" width="250" height="123" marginwidth="1" marginheight="1" align="center" src="modules/contact/rappel.php?ref='+ ref +'&nb='+ nb +'"></iframe>';

    document.getElementById(nom_div1).innerHTML=cont_div1;
    document.getElementById(nom_div1).style.visibility="visible";
  }

function ferme_contact(nb)
  {
 var nom_div1='contact' + nb;
document.getElementById(nom_div1).style.visibility="hidden";
}
