function roll(id, img) {
  e = document.getElementById(id);
  if (e) {
    e.src = img;
  }
}
