	var cinemaOculto = 0;
	function HideContent(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "none";
	}
	function ShowContent(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "block";
	}
	function ReverseContentDisplay(d) {
	if(d.length < 1) { return; }
	if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
	else { document.getElementById(d).style.display = "none"; }
	}
	function MostraCinema() {
	  HideContent('divcinemaparcial');
	  HideContent('menudir1');
	  HideContent('menudir2');	  
	  ShowContent('divcinema');
		cinemaOculto = 1;
	}
	function OcultaCinema() {
	  HideContent('divcinema');
	  ShowContent('divcinemaparcial');
	  ShowContent('menudir1');
	  ShowContent('menudir2');	  
		cinemaOculto = 0;
	}
	function InverteCinema() {
		if (cinemaOculto==0) {
			MostraCinema();
		} else {
			OcultaCinema();
		}		
	}
  function janela_poster(url)
  {
    popup = window.open(url, '', 'width=500,height=580,left=50,top=20,menubar=no,scrollbars=yes,fullscreen=no');
  }
  function janela_foto(url)
  {
    popup = window.open(url, '', 'width=500,height=580,left=50,top=20,menubar=no,scrollbars=yes,fullscreen=no');
  }
  function janela_cena(url)
  {
    popup = window.open(url, '', 'width=650,height=500,left=20,top=20,menubar=no,scrollbars=yes,fullscreen=no');
  }
  function janela_imagem(url)
  {
    popup = window.open(url, '', 'width=600,height=580,left=50,top=10,menubar=no,scrollbars=yes,fullscreen=no');
  }
  function janela_essencia(url)
  {
    popup = window.open(url, '', 'width=600,height=580,left=50,top=10,menubar=no,scrollbars=yes,fullscreen=no');
  }
  function janela_direitos(url)
  {
    popup = window.open(url, '', 'width=420,height=550,left=80,top=40,menubar=no,scrollbars=yes,fullscreen=no');
  }
  function janela_vote(url)
  {
    popup = window.open(url, '', 'width=420,height=460,left=80,top=40,menubar=no,scrollbars=yes,fullscreen=no');
  }
  function janela_anuncie(url)
  {
    popup = window.open(url, '', 'width=1000,height=700,left=5,top=5,menubar=no,scrollbars=yes,fullscreen=no');
  }
  function pesquisa()
  {
    document.myForm.action = "pesquisa.jsp";
    document.myForm.submit();
    return;
  } 
