
function inscription(){
	sendAjaxRequest('action-inscription.html', 'formInscription', 'reponseAjaxSimple');	
}

function modifierInfo(){
	sendAjaxRequest('action-modifierCoordonnees.html', 'formModif', 'reponseAjaxSimple');
}

function supprimerCompte(){
	
	var message = 'Voulez - vous réellement supprimer votre compte ?';
	
	if (confirm(message)){
		sendAjaxRequest('action-supprimerCompte.html', 'formModif', 'reponseAjaxSimple');
	}
}

function afficherAccueil(){
	document.location.href = 'action-afficherAccueil.html';
}

function retourInscription(){
	window.setTimeout('afficherAccueil()', 1500);
}


