function checkcomment() {
				   var msg = "";
				//Vérification du mail
					if (document.formcomment.author.value == "")   {
					  msg += "Merci de saisir votre nom\n";
					  document.formcomment.author.style.backgroundColor = "#E3B9CA";
				}
				
				if (document.formcomment.comment.value.length <  3)   {
					  msg += "Merci de saisir votre adresse\n";
					  document.formcomment.comment.style.backgroundColor = "#E3B9CA";
				}
				
				if (document.formcomment.email.value != "")   {
					  indexAroba = document.formcomment.email.value.indexOf('@');
					  indexPoint = document.formcomment.email.value.indexOf('.');
					  if ((indexAroba < 0) || (indexPoint < 0))      {
						 document.formcomment.email.style.backgroundColor = "#E3B9CA";
						 msg += "L'adresse mail n'est pas valide\n";
					  }
				} else {
					  document.formcomment.email.style.backgroundColor = "#E3B9CA";
					  msg += "Merci de saisir votre email\n";
				}

			
				// résultat
				if (msg == "")
				{
				//document.formcomment('nouveau').submit();
				return(true);
				}
				else {
					  alert(msg);
					 return(false);
				}
				}
				
