// JavaScript Document

function showPhoto(code) {
	document.getElementById("photo-film").style.display="";
	var imgPhoto = document.getElementById("imgPhoto");
	if (imgPhoto) {
		imgPhoto.src = "../images/films/"+code+".jpg";
	}
}

function hidePhoto() {
	document.getElementById("photo-film").style.display="none";
}

function showHide(divId) {
	var maDiv = document.getElementById(divId);
	if (maDiv) {
		if (maDiv.style.display=="none") {
			maDiv.style.display = "";
		}
		else {
			maDiv.style.display = "none";
		}
	}
}

function selectThumbGal(div) {
	if (div) {
		div.className = "thumbGalSelected";
	}
}

function deselectThumbGal(div) {
	if (div) {
		div.className = "thumbGal";
	}
}

