// Procedures globales du projet
function DIVERSNAV_CONTROLEEMAILNAV(VCHEMAIL){{VCHEMAIL=_SAE(VCHEMAIL,3).toLowerCase();if((isgEmail_js(VCHEMAIL)!=true)){alert("Adresse e-mail incorrecte.");return false}else {;return true}}}
function NumeriqueVersChaine_js(mnt,nbDecimal)
{
	if (nbDecimal == 0){
		return Math.round(mnt);
	}
	
	var exposant = Math.pow(10, nbDecimal);
	var mnt = Math.round(exposant*mnt)/exposant;
	if (Math.round(mnt) - mnt == 0){
		var txtMnt=mnt+".0000000000";
	}else{
		var txtMnt=mnt+"00000000";
	}
	txtMnt = txtMnt.substring(0,txtMnt.indexOf(".")+1+nbDecimal);
	txtMnt = txtMnt.replace(".",",");
	return txtMnt;
}


