var locationId;

function renderLocation(location_id) {
  locationId = location_id;
  AjaxRequest("CoMeT_function=run_module&module=ModLocations&function=mod_locations&action=render_location&location_id=" + location_id, '#location_' + location_id, renderLocationResponse);
}

function closeLocation(location_id) {
  locationId = location_id;
  AjaxRequest("CoMeT_function=run_module&module=ModLocations&function=mod_locations&action=close_location&location_id=" + location_id, '#location_' + location_id, renderLocationResponse);
}

function renderLocationResponse(html) {
  jQuery('#location_' + locationId).html(html);
}