function ValidateRegistration(form) {
	if(IsEmpty(form.first_name)) {
		alert('Veuillez entrer votre prénom.');
		form.first_name.focus();
		return false; }
	if(IsEmpty(form.last_name)) {
		alert('Veuillez entrer votre nom de famille.');
		form.last_name.focus();
		return false; }
	if(IsEmpty(form.organization)) {
		alert('Veuillez entrer le nom de votre organisation.');
		form.organization.focus();
		return false; }
	if(IsEmpty(form.email)) {
		alert('Veuillez entrer votre adresse courriel.');
		form.email.focus();
		return false; }
	return true;
	}
