// Procédures globales du projet
function EmailValable(VPARAM_EMAIL ){{var VPOSITION_AROBASE=0;var VPOSITION_POINT=0;VPOSITION_AROBASE=(VPARAM_EMAIL.indexOf("@",1-1)+1);if((VPOSITION_AROBASE==0)){return(false)}VPOSITION_POINT=(VPARAM_EMAIL.indexOf(".",VPOSITION_AROBASE-1)+1)
if((VPOSITION_POINT==0)){return(false)}if(((VPOSITION_POINT-VPOSITION_AROBASE)<3)){return(false)}if((((VPARAM_EMAIL.length-VPOSITION_POINT)<2)||((VPARAM_EMAIL.length-VPOSITION_POINT)>4))){return(false)}return(true)}}
