// Gallery script.
// Script copyright (C) 2004-08 www.cryer.co.uk.
// Script is free to use provided this copyright header is included.
function LoadGallery(pictureName,imageFile,GalleryLink,GalleryLinkContent,titleCaption,captionText) {
	document.getElementById(pictureName).src = imageFile;
	document.getElementById(GalleryLink).href=GalleryLinkContent;
	document.getElementById(titleCaption).innerHTML=captionText;
}