function verif(f)
{
	if (!f.civilite[0].checked && !f.civilite[1].checked && !f.civilite[2].checked)
	{
		f.civilite[0].focus();
		alert("Choisissez votre civilité");		
		return false;	
	}
	
	if (f.nom.value == '')
	{
		f.nom.focus();
		alert("Entrez votre nom");		
		return false;	
	}
	
	if (f.prenom.value == '')
	{
		f.prenom.focus();
		alert("Entrez votre prénom");		
		return false;	
	}

	if (f.email.value == '')
	{
		f.email.focus();
		alert("Entrez votre email");		
		return false;	
	}
	
	if (f.email.value != '' && !MailOk(f.email))
	{
		f.email.focus();
		alert("Votre email est incorrect");		
		return false;
	}
	
	
	if (f.status[2].checked || f.status[3].checked)
	{
		if (f.societe.value=="")
		{
			f.societe.focus();
			alert("Entrez votre société ou organisme");
			return false;
		}
	}
	
	return true;
}

function changer_statut()
{
	document.inscription.action.value="";
	document.inscription.submit();
}