function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function valid() 
{
	if (document.contact.nom.value == "")
	{
		alert("Veuillez indiquer votre nom.");
		document.contact.nom.focus();
		return(false);
	} 
	if (document.contact.prenom.value == "")
	{
		alert("Veuillez indiquer votre prénom.");
		document.contact.prenom.focus();
		return(false);
	} 
	if (document.contact.adresse.value == "")
	{
		alert("Veuillez indiquer votre adresse.");
		document.contact.adresse.focus();
		return(false);
	} 
	if (document.contact.cp.value == "")
	{
		alert("Veuillez indiquer votre code postal.");
		document.contact.cp.focus();
		return(false);
	} 
	if (document.contact.ville.value == "")
	{
		alert("Veuillez indiquer votre ville.");
		document.contact.ville.focus();
		return(false);
	} 
	if (document.contact.tel.value == "")
	{
		alert("Veuillez indiquer votre numéro de téléphone.");
		document.contact.tel.focus();
		return(false);
	} 
	if (document.contact.mail.value == "")
	{
		alert("Veuillez indiquer votre adresse mail.");
		document.contact.mail.focus();
		return(false);
	} 
	if (document.contact.type_evenement.value == "")
	{
		alert("Veuillez indiquer le type d'évènement envisagé.");
		document.contact.type_evenement.focus();
		return(false);
	} 
	if (document.contact.nb_pers.value == "")
	{
		alert("Veuillez indiquer le nombre de personne envisagé.");
		document.contact.nb_pers.focus();
		return(false);
	} 
	if (document.contact.date_evenement.value == "")
	{
		alert("Veuillez indiquer la date envisagé.");
		document.contact.date_evenement.focus();
		return(false);
	} 
	if (document.contact.comment_connu.value == "")
	{
		alert("Veuillez indiquer comment vous avez connu Alésia Réceptions.");
		document.contact.comment_connu.focus();
		return(false);
	} 
}
