function ajouterLieux(sIdRegion, sLieux) {
	if (!document.getElementById || !sLieux.length || sLieux.search(/</) != -1)
		return;
	
	var oChampLieux = document.getElementById('lieux');
	if (!oChampLieux)
		return;
	
	var oCarte = document.getElementById('carte' + sIdRegion);
	if (oChampLieux.value.search(sLieux) == -1) {
		if (!oChampLieux.value)
			oChampLieux.value = sLieux;
		else
			oChampLieux.value += ',' + sLieux;
		
		oCarte.style.display = 'block';
	} else {
		oChampLieux.value = oChampLieux.value.replace(sLieux, '');
		oCarte.style.display = 'none';
	}
	
	oChampLieux.value = oChampLieux.value.replace(/,,/, ',');
	oChampLieux.value = oChampLieux.value.replace(/^,/, '');
	oChampLieux.value = oChampLieux.value.replace(/,$/, '');
}