function LoadGallery(pictureName,imageFile,titleCaption,captionText)
{
if (document.all)
	{
	document.getElementById(pictureName).style.filter="blendTrans(duration=0.5)";
	document.getElementById(pictureName).filters.blendTrans.Apply();
 	}
	document.getElementById(pictureName).src = imageFile;
	if (document.all)
 		{
 		document.getElementById(pictureName).filters.blendTrans.Play();
		}
}