// JavaScript Document
function CheckMail()
  {
	if (document.mailform.email.value == "")
		{
		alert ("S.V.P. remplissez le champ e-mail");
		document.mailform.email.focus()
		return false;	
		}

		if (document.mailform.email.value.indexOf ('@', 0) == -1  ||
		document.mailform.email.value.indexOf ('.', 0) == -1 )
		{
		alert ("S.V.P. corrigez le champ e-mail");
		document.mailform.email.focus()
		return false;
		}
		
		if (document.mailform.nom.value == "")
		{
		alert ("S.V.P. Indiquez votre Nom");
		document.mailform.nom.focus()
		return false;	
		}
		
		if (document.mailform.adresse.value == "")
		{
		alert ("S.V.P. Indiquez votre Adresse");
		document.mailform.adresse.focus()
		return false;	
		}

		if (document.mailform.cp.value == "")
		{
		alert ("S.V.P. remplissez le champ Code Postal");
		document.mailform.cp.focus()
		return false;	
		}

		if (document.mailform.ville.value == "")
		{
		alert ("S.V.P. remplissez le champ Ville");
		document.mailform.ville.focus()
		return false;	
		}

		if (document.mailform.tel.value == "")
		{
		alert ("S.V.P. Indiquez au moins un numero de telephone");
		document.mailform.tel.focus()
		return false;	
		}
		if (document.mailform.datechantier.value == "")
		{
		alert ("S.V.P. Indiquez une date de chantier prevue");
		document.mailform.datechantier.focus()
		return false;	
		}
		
		if (document.mailform.contact.value == "nc")
		{
		alert ("S.V.P. Indiquez comment vous souhaitez etre recontacte");
		document.mailform.contact.focus()
		return false;	
		}
		
		if (document.mailform.pdt.value == "nc")
		{
		alert ("S.V.P. Indiquez le produit qui vous interesse");
		document.mailform.pdt.focus()
		return false;	
		}

		if (document.mailform.longrampe.value == "")
		{
		alert ("S.V.P. Indiquez la longueur de votre rampe d'escalier");
		document.mailform.longrampe.focus()
		return false;	
		}

			
		if (document.mailform.refporte.value == "")
		{
		alert ("S.V.P. Indiquez la Ref de la porte qui vous interesse");
		document.mailform.refporte.focus()
		return false;	
		}
		if (document.mailform.reframpe.value == "")
		{
		alert ("S.V.P. Indiquez la Ref de la rampe qui vous interesse");
		document.mailform.reframpe.focus()
		return false;	
		}
		if (document.mailform.refautre.value == "")
		{
		alert ("S.V.P. Indiquez la Ref du produit qui vous interesse");
		document.mailform.refautre.focus()
		return false;	
		}
		if (document.mailform.largporte.value == "")
		{
		alert ("S.V.P. Indiquez la largeur de votre porte");
		document.mailform.largporte.focus()
		return false;	
		}
		if (document.mailform.hporte.value == "")
		{
		alert ("S.V.P. Indiquez la hauteur de votre porte");
		document.mailform.hporte.focus()
		return false;	
		}


		else{
		clicsimple();
		}
}
function clicsimple(){
	if (document.forms['mailform'].envoyer.value!= "Veuillez patienter..."){
	document.forms['mailform'].envoyer.style.border = "none"
	document.forms['mailform'].envoyer.style.background = "#3E562E"
	document.forms['mailform'].envoyer.style.color = "#FFFFFF"
	document.forms['mailform'].envoyer.value = "Veuillez patienter..."
	document.forms['mailform'].submit()
	}
}
//-->
