function affichePhoto(image, titre, texte)
{
	fichier = 'php/photo_zoom.php?image='+image+'&titre='+titre+'&texte='+texte;
	window.open(fichier,'', 'menubar=no,location=no,resizable=no,scrollbars=no,status=no,width=700,height=600');
}

function ouvreFenetre(lien)
{
	window.open(lien,'', 'menubar=no,location=no,resizable=no,scrollbars=no,status=no,width=700,height=600');
}

function verifieChampActu()
{
	if (document.forms[0].titre.value.length == 0) {		alert("Faut un titre");		return false;	}
	if (document.forms[0].date.value.length == 0) {		alert("Faut une date");		return false;	}
	if (document.forms[0].message.value.length == 0) {		alert("Faut un message...");		return false;	}}

function confirme_suppr() {
	return confirm("Tu es sûr de vouloir supprimer cet élément?");
}
