// JavaScript Document
  function changeSpanColor(id, color) {
    document.getElementById(id).style.color = color;
  }