function hl(id) { $(id).setStyle({ backgroundColor: '#FAFAD0', borderColor: '#77C' }); }
function lh(id) { $(id).setStyle({ backgroundColor: '#F0F0FF', borderColor: '#CCF' }); }
function updatePostal()
{
	//var url = 'http://localhost:81/ws/postalcode.php';
	var url = 'http://www.immofacile.info/ws/postalcode.php';
	new Ajax.Request( url, {
		method: 'get',
		parameters: { q: $F('codepostal') },
		onSuccess: function(transport) {
			var r = transport.responseText.split(';');			
			if (r == '' || r == null || r.length <= 0) {
				if ($F('namepostal').length > 0)
					$('namepostal').value = '';
				return;
			}
			$('codepostal').value = r[0];
			$('namepostal').value = r[1];
		} 
	}); 
}
