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