	function fctControle(theForm)
	{
		
		if(theForm.naam.value.length < 1)
		  {
			alert("Veuillez entrer votre nom");
			theForm.naam.focus();
			theForm.naam.select();
			return (false);
		  }
		if(theForm.voornaam.value.length < 1)
		  {
			alert("Veuillez entrer votre prénom");
			theForm.voornaam.focus();
			theForm.voornaam.select();
			return (false);
		  }

		  if(theForm.email.value.length < 1)
		  {
			alert("Veuillez entrer votre adresse électronique");
			theForm.email.focus();
			theForm.email.select();
			
			return (false);
		  }
		 
		  if(theForm.email.value.length > 0)
		  {
			return fctControleEmail();
		  }
		return (true);	
	}
	
	function fctFormatEmail(email)
	{
		if ((email.indexOf('@',0)==-1) || (email.indexOf('.',0)==-1))
		{
		return false;
		}
		else
		{
		return true;
		}
	}

	function fctControleEmail()
	{
	strEmail = document.frm1.email.value;
	if(strEmail.length > 0)
	{
	if (fctFormatEmail(strEmail)==false)
	{
	alert("L’adresse électronique que vous avez introduite est incorrecte. Veuillez la corriger");
	document.frm1.email.focus();
	return (false);
	}
	}
	}
