function checkDevis() {
	var msg = '';
	if ($('Email').value == '') {
		msg = 'Le champ Email est obligatoire';
		$('Email').focus();
	}
	if ($('Ville').value == '') {
		msg = 'Le champ Ville est obligatoire';
		$('Ville').focus();
	}
	if ($('CodePostal').value == '') {
		msg = 'Le champ Code Postal est obligatoire';
		$('CodePostal').focus();
	}
	if ($('Adresse').value == '') {
		msg = 'Le champ Adresse est obligatoire';
		$('Adresse').focus();
	}
	if ($('Nom').value == '') {
		msg = 'Le champ Nom est obligatoire';
		$('Nom').focus();
	}
		
	if (msg != '') {
	 	alert(msg);
	 	return false;
	} else {
		return true;
	}
}

function checkContact() {
	var msg = '';

	if ($('Adresse').value == '') {
		msg = 'Le champ Adresse est obligatoire';
		$('Adresse').focus();
	}
	if ($('Nom').value == '') {
		msg = 'Le champ Nom est obligatoire';
		$('Nom').focus();
	}
	if ($('Email').value == '') {
		msg = 'Le champ Email est obligatoire';
		$('Email').focus();
	}		
	if (msg != '') {
	 	alert(msg);
	 	return false;
	} else {
		return true;
	}
}
