
var img;

function photoinit() {
	document.getElementById("photowindow").style.display = 'none';
}

function changephoto(img){
	document.getElementById("photowindow").style.display = 'block';
	document.getElementById("bigphoto").src = img;
}

function closephoto(){
	document.getElementById("photowindow").style.display = 'none';
}
