//---------------------------------------------------------------------------------------
//- Ap3com 2009
// developpement : P.Stephane 03/09/2009
//---------------------------------------------------------------------------------------
/* POUR POPIN */
function show_popin(popin){
	$('popin').show();
	return false;
}

//---------------------------------------------------------------------------------------
//GESTION DES COMPTES CLIENTS
//---------------------------------------------------------------------------------------
//pour edition  informations client 
function dsp_edit_client_nfo(id_edit){
	//pour edition  informations client 
	new Ajax.Request('./shared/_ajax_front/edit_nfo_client_front.php', {
		 method: 'post',
		evalJS: false,
		evalScripts: false,
		 parameters: 'id='+id_edit,
		 onSuccess: function(transport){
			$('ajax_nfo_dyn').update(transport.responseText);
			$('popin').show();
		 }
	});
	return false;
}
