function closeJob(app, position, jobId) {
  var closeFlag = confirm('Are you sure you want to close ' + position + '?');
  if (closeFlag) {
    location.href = app + '?close=' + jobId;
  }
}
