// Gallery script.
// With image cross fade effect for those browsers that support it.
// Script copyright (C) 2004 www.cryer.co.uk.
// Script is free to use provided this copyright header is included.

function LoadGallery(imageFile,captionText,paragraphText,photoLinkURL)
{
  if (document.all)
  {
    document.getElementById('ovalphoto').style.filter="blendTrans(duration=1)";
    document.getElementById('ovalphoto').filters.blendTrans.Apply();
  }
  document.getElementById('ovalphoto').src = imageFile;
  if (document.all)
  {
    document.getElementById('ovalphoto').filters.blendTrans.Play();
  }
  document.getElementById('photoCaptionTitle').innerHTML=captionText;
  document.getElementById('photoCaptionText').innerHTML=paragraphText;
  document.getElementById('photoLink').href=photoLinkURL;
}
