//
// Fonctions
//

function post_form(chemin) {
	if (($("#f_courriel").val()) && ($("#f_courriel").val() != "Courriel")) {
		$.post(chemin,
		{ f_courriel: $("#f_courriel").val() },
		function(msg){
			$("#texte_inscription").html("Tu as été ajouté à notre liste d'envoi avec succès!<br /><br />Vous recevrez les dernières nouvelles de la Série du Diable lors du prochain envoi.")
		});
	} else {
		alert("Veuillez entrer votre courriel");
	}
	
	return false;
}
