function verif_champs()
	{
	if(document.contact.nom.value == "")
	{
		alert("Veuillez entrer votre nom SVP !");
		document.contact.nom.focus();
		return false;
	}
	if(document.contact.courriel.value == "")
	{
		alert("Veuillez entrer votre adresse courriel SVP !");
		document.contact.courriel.focus();
		return false;
	}
	if(document.contact.courriel.value.indexOf('@') == -1)
	{
		alert("Adresse Email invalide!");
		document.contact.courriel.focus();
		return false;
	}
	if(document.contact.courriel.value.length <7)
	{
		alert("Adresse Email invalide!");
		document.contact.courriel.focus();
		return false;
	}		
	if(document.contact.comments.value == "")
	{
		alert("Vos commentaires SVP !");
		document.contact.comments.focus();
		return false;
	}				
}


window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=20; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}






