// XL GALLERY FUNCTIONS - James Bligh - XLR8cs.com

//Show image Function

	function showPic(vImage)
		{
		document.getElementById("divViewingPane").style.visibility = 'visible';
		document.getElementById("divViewingPane").innerHTML = ('<center><p/><img src="photos/'+vImage+'.jpg" height="60%" /><a href="#" onclick="hidePic()"><h1>Back</h1></a></center>');
		}
		
	function hidePic()
		{
		document.getElementById("divViewingPane").style.visibility = 'hidden';
		document.getElementById("divViewingPane").innerHTML = '';
		}
		


