function updateDestinataireFromSelect(select){
	if(document.getElementById(select.id+'_mail_'+(select.selectedIndex-1)).value != ''){
		document.getElementById('destinataire').value = document.getElementById(select.id+'_mail_'+(select.selectedIndex-1)).value;
	}else{
		document.getElementById('destinataire').value = formMailId;
	}
}

function updateDestinataireFromRadio(mailId){
	if(mailId != '' && mailId != null){
		document.getElementById('destinataire').value = mailId;
	}else{
		document.getElementById('destinataire').value = formMailId;
	}
}

function submitFormulaire(submitFormId){


	var serializedData = $("#pop_up_form > form").serialize();
	$.post('/'+siteAccess+'/afnor_formulaire/form/'+submitFormId+'/1', serializedData, function(data){
		$("#TB_ajaxContent").html(data);
	});
	$("#TB_ajaxContent").html('loading...');

	if (formId>0) 
	{
		window.location.href = "#";
	}else {
		window.location.href += "#formulaire";
	}
}
