// JavaScript Document

      function LoadGallery(pictureName,imageFile,pictureName2,imageFile2,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();
			}
			if (document.all)
  			{
				document.getElementById(pictureName2).style.filter="blendTrans(duration=1)";
				document.getElementById(pictureName2).filters.blendTrans.Apply();
 			}
			document.getElementById(pictureName2).src = imageFile2;
			if (document.all)
 			{
 				document.getElementById(pictureName2).filters.blendTrans.Play();
			}
			document.getElementById(titleCaption).innerHTML=captionText;
      }
	  
