// IMAGE PLACER: <img id="image" src="image.jpg" alt="" border="0">
// CAPTION PLACER: <p id="caption"></p>
// LINK: <a href="#_self" onclick="LoadGallery('image','image.jpg','caption','text here')"></a>



function LoadGallery(pictureName,imageFile,titleCaption,captionText)
      {
			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;
      }
