<!--HDready-graphic - 2008/02/11 -->


function afficherType() {
	
	var a = document.getElementById("titre_type");
	var b = document.getElementById("menutypealtavia");
	var c = document.getElementById("menutypeillus");
	var d = document.getElementById("menutype3d");
	
	if (document.formulaire_image.section.value == "altavia")
	{
		
		a.style.display = "block";
		b.style.display = "block";
	
		c.style.display = "none";
		d.style.display = "none";

	}
	
	else if (document.formulaire_image.section.value == "illustration")
	{
		a.style.display = "block";
		c.style.display = "block";
	
		b.style.display = "none";
		d.style.display = "none";
	}
	
	else if (document.formulaire_image.section.value == "3d")
	{
		a.style.display = "block";
		d.style.display = "block";
	
		b.style.display = "none";
		c.style.display = "none";
	}
	else
	{
		a.style.display = "none";
		b.style.display = "none";
		c.style.display = "none";
		d.style.display = "none";
	}

}