			<!--
			function fctControle()
			{
			    if(document.getElementById('naam').value.length < 1)
				  {
					alert(document.getElementById('strnaam').value);
					return (false);
				  }
				if(document.getElementById('email').value.length < 1)
				  {
					alert(document.getElementById('stremail').value);
					return (false);
				  } 
				if(document.getElementById('naamvriend').value.length < 1)
				  {
					alert(document.getElementById('strnaamvriend').value);
					return (false);
				  }  
				if(document.getElementById('emailvriend').value.length < 1)
				  {
					alert(document.getElementById('stremailvriend').value);
					return (false);
				  }   
				
				if(document.getElementById('email').value.length > 0)
				  {
					return fctControleEmail(document.getElementById('email').value);
				  }   
                if(document.getElementById('emailvriend').value.length > 0)
				  {
					return fctControleEmail(document.getElementById('emailvriend').value);
				  } 
			  return (true);
			}
			function fctFormatEmail(Pers_email)
			{
				if ((Pers_email.indexOf('@',0)==-1) || (Pers_email.indexOf('.',0)==-1))
				{
			    		return false;
			   	}
			  
			}

			function fctControleEmail(email)
			{
				strEmail = email;
				if(strEmail.length > 0)
				{
					if (fctFormatEmail(strEmail)==false)
					{
						alert(document.getElementById('strInvalidEmail').value);
						return (false);
					}
				}
			}

			//-->
