function LoadGallery(pictureName,imageFile,captionText,w,h)
{
  w = (w)?w:400;
  h = (h)?h:276;
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
    document.getElementById(pictureName).filters.blendTrans.Apply();
  }
  document.getElementById(pictureName).src = 'images/gallery/pics/'+imageFile;
  if (w && h) {
  	document.getElementById(pictureName).width=w;
  	document.getElementById(pictureName).height=h;
  }

  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();
  }
  picCaption.innerHTML=captionText;
}