if (!this.PhotoView)
{
	PhotoView = {};
} 

PhotoView.Show = function(url)
{
	var imageFrame = document.getElementById('largeImageFrame');
	imageFrame.src = '/photos/fullsize/' + url
	$('imageFrame').style.display = 'inline';
}

PhotoView.Hide = function ()
{
	$('imageFrame').style.display = 'none';
}
