// JavaScript Document
function replaceImageByID(imageID, imageURL) {
  var img = document.getElementById(imageID);
  if (img) {
  	img.src = imageURL;
  }
}