function verifFormInscription(msg_error){
	var retour = true;
	
	if( $('#raisonSociale').val() =='' ){retour = false;}
	if( $('#adresse1').val() =='' ){retour = false;}
	if( $('#cp').val() =='' ){retour = false;}
	if( $('#ville').val() =='' ){retour = false;}
	if( $('#paysCode').val() =='' ){retour = false;}
	if( $('#genreId').val() =='' ){retour = false;}
	if( $('#nom').val() =='' ){retour = false;}
	if( $('#prenom').val() =='' ){retour = false;}
	if( $('#fonction').val() =='' ){retour = false;}
	if( $('#tel').val() =='' ){retour = false;}
	if( $('#email').val() =='' ){
		retour = false;
	}else{
		if(verifFormatEmail($('#email').val()) == false){
			retour=false;
		}
	}
	if( $('#antispam').val() =='' ){retour = false;}
	
	if(!retour){	
		alert(msg_error);
	}
	return retour;
}

function verifFormatEmail(email){
   var reg = /^[a-z0-9._-]+@[a-z0-9.-]{2,}[.][a-z]{2,3}$/
   return (reg.exec(email)!=null)
}
