function rec_in(v) {
	c = document.getElementById('in_numero');
	if(v=='Saisissez le numéro de mobile recherché') {
		c.value = '';
		c.style.fontSize = '28px';
		c.style.height = '35px';
		c.style.color = '#333';
		c.style.paddingTop = '5px';
		c.style.paddingBottom = '5px';
	}
}
function rec_out(v) {
	c = document.getElementById('in_numero');
	if(v=='') {
		c.style.fontSize = '14px';
		c.style.height = '32px';
		c.style.color = '#999';
		c.style.paddingTop = '13px';
		c.style.paddingBottom = '0px';
		c.value = 'Saisissez le numéro de mobile recherché';
	}
}
function chercher() {
	numero = document.getElementById('in_numero').value;
	document.getElementById('nnn').innerHTML = numero;
	document.getElementById('explic1').style.display = 'none';
	document.getElementById('explic2').style.display = 'none';
	document.getElementById('wait').style.display = 'block';
	setTimeout('afficher()',1500);
}
function afficher() {
	document.getElementById('explic').style.height = '167px';
	document.getElementById('wait').style.display = 'none';
	document.getElementById('explic2').style.display = 'block';
}