/* Photo Gallery, Compatible: IE, Mozilla, Opera */
function LoadGallery(pictureName,imageFile,titleCaption,captionText)
{
	picture = document.getElementById(pictureName);
	if(picture) {
		if(picture.style && picture.filters) {
			picture.style.filter="blendTrans(duration=1)";
			picture.filters.blendTrans.Apply();
		}
  		picture.src = imageFile;
  		if(picture.filters) {
			picture.filters.blendTrans.Play();
		}
		
		caption = document.getElementById(titleCaption)
	
		if (caption.innerText)   
	   		caption.innerText=captionText;
		else
		if (caption.textContent)   
	   		caption.textContent=captionText;
	}
}



