function verifPassOubli(TheForm)
{
	if(TheForm.pEmail.value.length == 0)
	{
		alert('Ce champ est obligatoire !');
		TheForm.pEmail.focus();
		return false;
	}
	if(!isValidMail(TheForm.pEmail.value))
	{
		alert('Ce champ n\'est pas une adresse e-mail !');
		TheForm.pEmail.focus();
		return false;
	}
}

