
function changeImage(imgName, img) { //v1.0
  if (document.images[imgName] != null) {
    document.images[imgName].src = img;
  } 
};

