// JavaScript Document

function showphoto(image, width, height, caption){
	targetcontainer = document.getElementById('photocontainer');
	targetoverlay = document.getElementById('photooverlay');
	targetimg = document.getElementById('photoimg');
	targetcaption = document.getElementById('photocaption');
	
	targetimg.innerHTML = "<img src=\"" + image + "\" width=\"" + width + "\" height=\"" + height + "\" class=\"photoborder\">";
	targetcaption.innerHTML = "<p>" + caption + "</p>";
	
	targetcontainer.style.display = "block";
}

function closephoto(){
	target = document.getElementById('photocontainer');
	target.style.display = "none";	
}
