function changeColor(id) {
  var box = document.getElementById(id);
  box.style.background = "transparent url('circle.png') top left no-repeat";
  box.removeAttribute('onClick');
}

function makeBlack(boxId) {
  var box = document.getElementById(boxId);
  box.style.background = 'black';
}

