function LoadGallery(pictureName,imageFile,titleCaption,captionText,don,donText)
{
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
    document.getElementById(pictureName).filters.blendTrans.Apply();
  }
  document.getElementById(pictureName).src = imageFile;
  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();
  }
  document.getElementById(titleCaption).innerHTML=captionText;
  document.getElementById(don).href=donText;
}

function LoadGalleryBlog(pictureName,imageFile,titleCaption,captionText,titleCaption1,captionText1,titleCaption2,captionText2,don,donText)
{
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
    document.getElementById(pictureName).filters.blendTrans.Apply();
  }
  document.getElementById(pictureName).src = imageFile;
  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();
  }
  document.getElementById(titleCaption).innerHTML=captionText;
  document.getElementById(titleCaption1).innerHTML=captionText1;
  document.getElementById(titleCaption2).innerHTML=captionText2;
  document.getElementById(don).href=donText;
}

