function EstVide(content)
{
	if(content.length == 0)
		return true;
	else
	{
		var i = 0;
		var car = false;
		while(i<content.length && !car)
		{
			if(content.charAt(i) != " ")
				car = true;
			i++;
		}
		return !car;
	}
}

function VerifFormInsc()
{
	if(EstVide(document.getElementById("mail").value))
	{
		alert("L'e-mail doit être renseigné.");
		return false;
	}
	return true;
}