function doClose(id)
  {
  	document.getElementById('close_'+id).style.display = '';
  	document.getElementById('open_'+id).style.display='none';	
  }
function doOpen(id)
  {
    var nbcat=5;
  	for(i=1;i<nbcat;i++)
  	{
  		doClose(i)
  	}	
  	document.getElementById('close_'+id).style.display='none';
  	document.getElementById('open_'+id).style.display = '';
  }
  
function champsok()
{
	if (document.FORM_MAIL.nom.value.length == 0 )
	{
	alert("Entrez votre nom svp.");
	return false;
	}
	if (document.FORM_MAIL.prenom.value.length == 0 )
	{
	alert("Entrez votre prénom svp.");
	return false;
	}
	if (document.FORM_MAIL.mail.value.length == 0 )
	{
	alert("Entrez votre mail svp.");
	return false;
	}
	if (document.FORM_MAIL.tel.value.length == 0 )
	{
	alert("Entrez votre numéro de téléphone svp.");
	return false;
	}
	if (document.FORM_MAIL.message.value.length == 0 )
	{
	alert("Tapez un message svp.");
	return false;
	}
	<!-- controle validité du mail -->
	var arobase = document.FORM_MAIL.mail.value.indexOf("@")
	var point = document.FORM_MAIL.mail.value.lastIndexOf(".")
	if((arobase < 1)||(point + 2 > document.FORM_MAIL.mail.length)||(point < arobase+3))
	{
	alert("Votre mail est invalide.");
	return false;
	}
	return true;
	}
