// JavaScript Document

function ShowPhoto (filename, width, height) {
	
		document.getElementById("big_photo").style.visibility="visible";
		document.getElementById("big_photo").src="placeholder.gif";
		document.getElementById("big_photo").width=1;
		document.getElementById("big_photo").height=1;
		document.getElementById("big_photo").src=filename;
		document.getElementById("big_photo").width=width*.70;
		document.getElementById("big_photo").height=height*.70;
		var link="Photo.php?title=" + filename + "&referer=" + window.location.href;
		document.getElementById("big_photo_link").href=link;
}