﻿function ViewImage(imagePath, altText, width, height, largeImagePath, largeImageAltText, largeImageTitle, largeImageDescription, largeWidth, largeHeight)
{
	i = document.getElementById("regularImage");
	i.src = imagePath;
	i.alt = altText;
	i.height = height;
	i.width = width;
    
	i.onclick = function() { ViewLargeImage(largeImagePath,largeImageAltText, largeImageTitle, largeImageDescription, largeWidth, largeHeight); };
}

function ViewLargeImage(imagePath, altText, title, description, width, height)
{
	//Show Large Image Layer
	document.getElementById("LargeImageContainer").style.visibility = "visible";
	
	//Load Image Values
	i = document.getElementById("largeImage");
	i.src = imagePath;
	i.alt = altText;
	i.height = height;
	i.width = width;

	//Write Description and Title
	document.getElementById("largeImageTitle").firstChild.nodeValue = title;
	document.getElementById("largeImageDescription").firstChild.nodeValue = description;
}

function CloseLargeImage()
{
	document.getElementById("LargeImageContainer").style.visibility = "hidden";
}