// JavaScript Document

// Gallery script.
// With image cross fade effect for those browsers that support it.
// Script copyright (C) 2004 www.cryer.co.uk.
// Script is free to use provided this copyright header is included.

function LoadGallery(pictureName,imageFile,titleCaption,captionText,fileLink,fileName)
{
  document.getElementById(pictureName).src = imageFile;
  document.getElementById(titleCaption).innerHTML=captionText;
  document.getElementById(fileLink).innerHTML= '<a href="images/fullsize/'+ fileName +'.jpg" target="_blank">Click to view uncropped image</a>';
}


/*

function LoadGallery(pictureName,imageFile,titleCaption,captionText)

{

  document.getElementById(pictureName).src = imageFile;

  document.getElementById(titleCaption).innerHTML=captionText;

}



*/