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

function verifFormAjout() {
 	if(document.ajout.fonction.selectedIndex ==0 ||
	 	document.ajout.noms.value == "" || 
  	 	document.ajout.adresse.value == "" || 
	 	document.ajout.cp.value == "" || 
	 	document.ajout.ville.value == "" ) 
  	alert('Vous devez remplir tous les champs obligatoires (*)');
  	else document.ajout.submit();
}

function aller(){
	id = document.choix2.personne.options[document.choix2.personne.selectedIndex].value;
	categorie = document.choix2.categorie.value;
	
	window.location.replace("index.php?action=2&id="+id+"&categorie="+categorie);
}

/*
function confirmation() {
	if (window.confirm('Voulez-vous supprimer cette news')){
		document.ajout.submit();
		return true;
	} else {
		return false;
	}
}
*/
