// JavaScript Document

function VerifFormCom()
{
	var form = document.forms['FormComm'];
	
	if(form.nom.value == '')
	{
		alert('Le champ "nom" est obligatoire.')
		form.nom.focus();
		return false;
	}
	
	if(form.comm.value == '')
	{
		alert('Le champ "commentaire" est obligatoire.')
		form.comm.focus();
		return false;
	}
	
	
}//VerifFormCom()
