function submit_sondage(id_sondage,vote){
	nom_form = "document.formulaire_sondage_"+id_sondage;
	
	// recup des infos du formulaire
	variables = getDataFromForm_final(eval(nom_form));

	// on recharge en ajax
	divId = 'form_sondage_'+id_sondage;
	url = '/globalflexit/clients/utils/common.php'; // 'HTML file to be called' ext *.php, *.inc, ...
	loadajax_final(divId, url, '', variables+"&id_sondage="+id_sondage+"&module=sondage&vote="+vote);	
}