// Photo Gallery

function LoadGallery(placeholderID,imageFile,captionID,captionText)
{
  if (document.all)
  {
    document.getElementById(placeholderID).style.filter="blendTrans(duration=1)";
    document.getElementById(placeholderID).filters.blendTrans.Apply();
  }
  document.getElementById(placeholderID).src = imageFile;
  if (document.all)
  {
    document.getElementById(placeholderID).filters.blendTrans.Play();
  }
  document.getElementById(captionID).innerHTML=captionText;
}

