function EventSignup(id) {
	$.get("/EventSignup?id="+id, function(data){
		if(data) {
			var regexp = /true/;
			if (data.match(regexp)) {
				jQuery.facebox('<div class="center">Votre inscription à bien été prise en compte.<br> Un mail vous à été envoyé.<br /></div>');
			} else  {
				jQuery.facebox('<div class="center">Une erreur est survenue lors de votre inscription.</div>');
			}
			var regexp = /already/;
			if (data.match(regexp)) {
				jQuery.facebox('<div class="center">Vous êtes déjà inscrit à cet événement.<br /></div>');
			}
		}
	});
}

function auth() {
	 $.ajax({
	   type: "POST",
	   data: "mode=login&username="+$('#login').val()+"&password="+$('#password').val()+"&login=Connexion",
	   url: "http://www.efficience-dentaire.fr/forums/ucp.php",	   
	   success: function(data){
		 $('#auth').submit();
	   }
	 });
}
