// JavaScript Document
// Chris Moore's Simple Gallery script.

function LoadGallery(photoName,imageFile,titleCaption,captionText)
{
  document.getElementById(photoName).src = imageFile;
  document.getElementById(titleCaption).innerHTML=captionText;
}
