﻿function DisplayImage(imageId, url)
{
  var image = document.getElementById(imageId);
  if (image)
  {
    image.src = url;
  }
}