//Load images
function LoadGallery(pictureName,imageFile,titleCaption,captionText,enlargeCaption,enlargeText)
      {
			if (document.all)
  			{
				document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
				document.getElementById(pictureName).filters.blendTrans.Apply();
 			}
			document.getElementById(pictureName).src = imageFile;
			document.getElementById(pictureName).alt = captionText;
			if (document.all)
 			{
 				document.getElementById(pictureName).filters.blendTrans.Play();
			}
			document.getElementById(titleCaption).innerHTML = captionText;
			document.getElementById(enlargeCaption).innerHTML = enlargeText;
      }
      
      
function openEnWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}      
      
      
      
      