// PREVIEW ARTICLE
function article_preview () {
	chapeau = $('textarea[name=chapeau]').val();
	contenu = $('textarea[name=contenu]').val();
	$.post('Modules/Preview.php', {texte: chapeau}, function (retour) {
		$('#preview .chapeau').html(retour);
	});
	$.post('Modules/Preview.php', {texte: contenu}, function (retour) {
		$('#preview .contenu').html(retour);
	});
}

// PREVIEW PROPOSITION
function proposition_preview () {
	contenu = $('textarea[name=contenu]').val();
	$.post('Modules/Preview.php', {texte: contenu}, function (retour) {
		$('#preview .contenu').html(retour);
	});
}

// PREVIEW ESPACE PERSONNEL
function espace_preview () {
	contenu = $('textarea[name=contenu]').val();
	$.post('Modules/Preview.php', {texte: contenu}, function (retour) {
		$('#preview .contenu').html(retour);
	});
}

// VALIDATION SUPPRESSION
function popup_validation (message, lien) {
	if (confirm(message)) {
		window.location.href = lien;
	}
}

// RECHERCHE
function recherche_submit () {
	if ($('#recherche_champ form input[name=recherche]').val() == '') {
		alert ('Une recherche doit comporter au moins un mot-clé.');
	} else {
		$('#recherche_champ form').submit();
	}
}
