function verifier (  )
{
	civ = false;
	if ( document.getElementsByName('civilite') ){
		for ( i=0; i<document.getElementsByName('civilite').length; i++ ){
			if ( document.getElementsByName('civilite')[i].checked == true )
				civ = true;
		}
	}
	rouge(civ);
	if(!civ){
		new AlertPerso().alert('Merci de bien vouloir renseigner les champs en rouge.');
		return false;
	}
	if ( document.getElementById('nom').value == '' ){
		new AlertPerso().alert('Merci de bien vouloir renseigner les champs en rouge.');
		return false;
	}
	if ( document.getElementById('tel').value == '' && document.getElementById('mail').value == '' ){
		new AlertPerso().alert('Merci de bien vouloir renseigner les champs en rouge.');
		return false;
	}
	if(document.getElementById('mail').value != '' && !verifMail(document.getElementById('mail').value)){
		new AlertPerso().alert("Merci de bien vouloir renseigner une adresse e-mail valide.");
		return false;
	}
	
	return true;
}


function rouge(civ){
	if(!civ)
		$('td_civ').style.backgroundColor = '#ff8c8c';
	else
		$('td_civ').style.backgroundColor = '';
	if ( document.getElementById('nom').value == '' )
		$('nom').style.backgroundColor = '#ff8c8c';
	else
		$('nom').style.backgroundColor = '';
	if ( document.getElementById('mail').value == '' )
		$('mail').style.backgroundColor = '#ff8c8c';
	else if(!verifMail(document.getElementById('mail').value))
		$('mail').style.backgroundColor = '#ff8c8c';
	else
		$('mail').style.backgroundColor = '';
}



function rechercheVille(cp){
	if(cp != ''){
		var ReqV = new Request( {url: 'index.php?ajax=ajax_geo&act=searchVille&cp=' + cp, onSuccess: function(retour) { document.getElementById('contenu_cpville').innerHTML = retour; document.getElementById('cpville').style.display = 'block'; }, onFailure: function() { alert ( 'Erreur n° 00xVil24cp257' ); } } );
		ReqV.send();
	}
}



function rechercheCP(ville){
	if(ville != ''){
		var ReqV = new Request( {url: 'index.php?ajax=ajax_geo&act=searchCP&ville=' + ville, onSuccess: function(retour) { document.getElementById('contenu_cpville').innerHTML = retour; document.getElementById('cpville').style.display = 'block'; }, onFailure: function() { alert ( 'Erreur n° 00xVil24cp257' ); } } );
		ReqV.send();
	}
}


function choixVilleCP(cp, vil){
	document.getElementById('cp').value = cp;
	document.getElementById('localite').value = vil;
	document.getElementById('cpville').style.display = 'none';
}
