function agrandir_photo(lien)
{
	var ap;
	ap=window.open(lien, '','toolbar=0, location=0, directories=0, statut=0, scrollbars=1, resizable=1, copyhistory=0, menubar=0, width=800, height=600, left=0, top=0');
	ap.focus();
}

function commentaire(lien)
{
	var com;
	com=window.open(lien, '','toolbar=0, location=0, directories=0, statut=0, scrollbars=1, resizable=1, copyhistory=0, menubar=0, width=500, height=600, left=0, top=0');
	com.focus();
}

function verificationFormulaireCommentaire()
{
	var nom=document.ajoutcom.auteur.value;
	var com=document.ajoutcom.commentaire.value;
	if(nom=="")
	{
	  window.alert("Veuillez saisir votre nom.");
	  return false;
	}
	if(com=="")
	{
	  window.alert("Veuillez saisir votre commentaire.");
	  return false;
	}
	return true;
}
