
function formvalidation(thisform)

{
	if (thisform.nom.value==null || thisform.nom.value=="" || thisform.prenom.value==null || thisform.adresse.value==null || thisform.societe.value==null || thisform.codepostal.value==null || thisform.ville.value==null || thisform.prenom.value=="" || thisform.adresse.value=="" || thisform.societe.value=="" || thisform.codepostal.value=="" || thisform.ville.value=="") 
		{alert("Veuillez remplir les champs indiqués avec un astérisque."); }
	else {document.form1.submit();}
}