function switchLayer(obj){
	var el = document.getElementById(obj)
		el.style.display = el.style.display == "block" ? "none" : "block";
}
function gotosite(site){
	//alert(document.getElementById('gotovid').value);
	window.location.href ="/theater/"+site+"/detail/"+document.getElementById('gotovid').value+"/";
}