/********************************************/
// Used in the photo album to change
// the image that is being displayed
/********************************************/
function loadImage(fileName, description)
{
	//document.getElementById('viewimage').src = "../images/loader.jpg";
	document.getElementById('DisplayImage').src = fileName; 
	document.getElementById('imageURL').innerHTML = 'Photo: ' + description;  
	//document.location.href = "#photo";

}

function loadImageAdmin(fileName, description, id)
{
	document.getElementById('viewimage').src = fileName; 
	document.getElementById('txtComment').value = description; 
	document.getElementById('txtPhotoID').value = id;
}