function playVideo(flvFile) {
	var photoVideoDiv = document.getElementById("photoVideoDiv");

	photoVideoDiv.innerHTML = "<object type=\"application/x-shockwave-flash\" width=\"320\" height=\"260\" wmode=\"transparent\" data=\"videos/flvplayer.swf?file=" + flvFile + "&autoStart=true\"><param name=\"movie\" value=\"videos/flvplayer.swf?file=" + flvFile + "&autoStart=true\" /><param name=\"wmode\" value=\"transparent\" /></object>";
}


var photoPath = "images/photos/fullsize/";

function displayPhoto(photoFile) {
	var photoVideoDiv = document.getElementById("photoVideoDiv");

	photoVideoDiv.innerHTML = "<img border=0 src=\"" + photoPath + photoFile + "\">";
}