var temp="";
function showfilm(film){
	if (temp!="") {
		var style2= document.getElementById(temp).style;
		style2.display="";
	}
		var whichLayer=film;
		var style2 = document.getElementById(whichLayer).style;
		style2.display="block";
		temp=whichLayer
	}
