// JavaScript Document
function verifEnrAgenda()
{       
		if(document.formuEnrAgenda.titre.value=='' || document.formuEnrAgenda.resume.value=='')
		{
			alert('Veuillez saisir toutes les informations, svp.');
			document.formuEnrAgenda.titre.focus();
			exit();
		}
		
		if(document.formuEnrAgenda.jour.value=='' || document.formuEnrAgenda.mois.value=='' || document.formuEnrAgenda.annee.value=='')
		{
			alert('Veuillez saisir la date compléte, svp.');
			document.formuEnrAgenda.jour.focus();
			exit();
		}
		

			document.formuEnrAgenda.method = "POST";
			document.formuEnrAgenda.action = "../requete/req_enr_agenda.php";
			document.formuEnrAgenda.submit();

}

// JavaScript Document
function verifModifAgenda(id)
{       
		if(document.formuModifAgenda.titre.value=='' || document.formuModifAgenda.resume.value=='')
		{
			alert('Veuillez saisir toutes les informations, svp.');
			document.formuModifAgenda.titre.focus();
			exit();
		}
		
		if(document.formuModifAgenda.jour.value=='' || document.formuModifAgenda.mois.value=='' || document.formuModifAgenda.annee.value=='')
		{
			alert('Veuillez saisir la date compléte, svp.');
			document.formuModifAgenda.jour.focus();
			exit();
		}
		

			document.formuModifAgenda.method = "POST";
			document.formuModifAgenda.action = "../requete/req_modif_agenda.php?id=" + id;
			document.formuModifAgenda.submit();

}

function selectDate()
{       
			
			document.choixDate.method = "POST";
			document.choixDate.action = document.location.href;
			document.choixDate.submit();

}
