function LoadGallery(imageFile,captionText,fileName)
{
  document.getElementById("imagegallery").src = 'images/'+ imageFile;
  document.getElementById("gallerycaption").innerHTML = captionText;
  document.getElementById("gallerylink").innerHTML= '<a href="images/fullsize/'+ fileName +'.jpg" target="_blank">Click to view uncropped image</a>';
}
