// JavaScript Document

function getElement(id)
{
	elmt=window.document.getElementById(id) ;
	return elmt;
}


function verifObjet(objet)
{
	if(objet.value == "Contact service commercial")
	{
		window.document.getElementById("cont_activite").style.display="block";	
	}
	else
	{
		window.document.getElementById("cont_activite").style.display="none";	
	}
}

function verifActivite(activite)
{
	window.document.getElementById("activiteH").value= activite[activite.selectedIndex].value ;
	
	if ( activite.selectedIndex >= 0 && activite[activite.selectedIndex].value == "Autre" )
  	 { 
  	
		window.document.getElementById("activites_autres").style.display="block";	
	}
	else
	{
		window.document.getElementById("activites_autres").style.display="none";	
	}
}
