// JavaScript Document

function validContact() 
	{	
			if (document.contact.societe.value == '') {
			alert('Indiquez votre Société');
			document.contact.societe.style.backgroundColor = "#8dd0ff";
			document.contact.societe.focus();
			return false;
			stop();
			}
			
			if (document.contact.fonction.value == '') {
			alert('Indiquez votre Fonction');
			document.contact.fonction.style.backgroundColor = "#8dd0ff";
			document.contact.fonction.focus();
			return false;
			stop();
			}
			
			if (document.contact.nom.value == '') {
			alert('Indiquez votre Nom');
			document.contact.nom.style.backgroundColor = "#8dd0ff";
			document.contact.nom.focus();
			return false;
			stop();
			}
			
			if (document.contact.prenom.value == '') {
			alert('Indiquez votre Prénom');
			document.contact.prenom.style.backgroundColor = "#8dd0ff";
			document.contact.prenom.focus();
			return false;
			stop();
			}
			
			if (document.contact.telephone.value == '') {
			alert('Indiquez votre Numéro de téléphone');
			document.contact.telephone.style.backgroundColor = "#8dd0ff";
			document.contact.telephone.focus();
			return false;
			stop();
			}
			
			if(document.contact.email.value.indexOf('@') == -1) {
		    alert("Ce n'est pas une adresse electronique !");
			document.contact.email.style.backgroundColor = "#8dd0ff";
		    document.contact.email.focus();
		    return false;
		    stop();
			}
						
			if (document.contact.message.value == '') {
			alert('Indiquez votre Message');
			document.contact.message.style.backgroundColor = "#8dd0ff";
			document.contact.message.focus();
			return false;
			stop();
			}
			
		  document.getElementById('contact').submit();
	}
function validSignup() 
	{	
			
			if (document.signup.societe.value == '') {
			alert('Indiquez votre Société');
			document.signup.societe.style.backgroundColor = "#8dd0ff";
			document.signup.societe.focus();
			return false;
			stop();
			}
			
			if (document.signup.siren.value.length<9) {
			alert('Indiquez votre numéros de Siren ou Siret');
			document.signup.siren.style.backgroundColor = "#8dd0ff";
			document.signup.siren.focus();
			return false;
			stop();
			}
			
			if (document.signup.nom.value == '') {
			alert('Indiquez votre Nom');
			document.signup.nom.style.backgroundColor = "#8dd0ff";
			document.signup.nom.focus();
			return false;
			stop();
			}
			
			if (document.signup.prenom.value == '') {
			alert('Indiquez votre Prénom');
			document.signup.prenom.style.backgroundColor = "#8dd0ff";
			document.signup.prenom.focus();
			return false;
			stop();
			}
			
			if (document.signup.tel.value == '') {
			alert('Indiquez votre Numéro de téléphone');
			document.signup.tel.style.backgroundColor = "#8dd0ff";
			document.signup.tel.focus();
			return false;
			stop();
			}
			
			if(document.signup.email.value.indexOf('@') == -1) {
		    alert("Ce n'est pas une adresse electronique !");
			document.signup.email.style.backgroundColor = "#8dd0ff";
		    document.signup.email.focus();
		    return false;
		    stop();
			}
			
			if(document.signup.conditions.checked== false) {
		    alert("Veuillez accepter les conditions de l'offre");
			document.signup.conditions.style.backgroundColor = "#8dd0ff";
		    document.signup.conditions.focus();
		    return false;
		    stop();
			}
			
			
		  document.getElementById('signup').submit();
	}