
function reloadSearch(mapElement, newSearchValues) {
	var debug = false;
	if (debug) {console.info("[FlagsTools.js] Starting reloadFlags");}
	
	if (getZoom(mapElement) > 4) {
		if (debug) { console.info("[MapTools.js] [reloadMarkers] Searching square []"); }
		
		latLngBounds = getMap(mapElement).getBounds();
		
	    getEventListAjaxWithCoord(
			mapElement,
			newSearchValues, 
			latLngBounds.getNorthEast().lat(), 
			latLngBounds.getNorthEast().lng(),
			latLngBounds.getSouthWest().lat(), 
			latLngBounds.getSouthWest().lng());
	}else{
		getMap(mapElement).clearOverlays();
		
		if( $('liste_resultat'))	
			$('liste_resultat').empty().setStyle('display', 'none');
	
			
		if( $('selectCtl'))	
			$('selectCtl').options.length =0;
	}

	if( debug) {console.info("[FlagsTools.js] End of reloadFlags");}
}
