
// Affiche / masque les formulaires qu'il faut
function switchFomulaireContact() {
	
	if (document.getElementById('annonceur_contact').style.display == 'none') {
		
		document.getElementById('annonceur_contact').style.display = 'block';
		
	}
	else {
		
		document.getElementById('annonceur_contact').style.display = 'none';
		
	}
}
