function abrirCinema(id){
	if(document.getElementById("fundoCinema")==null){
		var div   = document.getElementById("load");
		var fundo = document.createElement("div"); 
		fundo.id  = "fundoCinema";
		fundo.style.width  = div.style.width;
		fundo.style.height = div.style.height;
		div.appendChild(fundo);		
		fundo.innerHTML="<div id='cinema'></div>";
		var m = new Swf();
		m.setDiv("cinema");
		m.setVars("sessaoCinema="+id);
		m.setAltura("100%");
		m.setLargura("100%");
		m.setSwf("http://static1.cosmopax.com/cosmopax/swf/cinema.swf");
		m.gerar();
	}
}
function fecharCinema(){
	if(document.getElementById("fundoCinema")!=null){
		document.getElementById("load").removeChild(document.getElementById("fundoCinema"));
		document.getElementById("filme").innerHTML = "";
		document.getElementById("cinema").innerHTML = "";
	}
}

function abrirCinema2(id){
	if(document.getElementById("fundoCinema")==null){
		var div    = document.getElementById("load");
		
		var fundo  = document.createElement("div"); 
		fundo.id  = "fundoCinema";
		fundo.style.width  = div.style.width;
		fundo.style.height = div.style.height;
		fundo.innerHTML="<div id='cinema'></div>";
		div.appendChild(fundo);

		var m = new Swf();
		m.setDiv("cinema");
		m.setAltura("100%");
		m.setLargura("100%");
		m.setSwf("http://static1.cosmopax.com/cosmopax/swf/cinema2.swf");
		m.gerar();
		
		var filme = document.createElement("div"); 
		filme.id  = "filme";
		fundo.appendChild(filme);
		//filme.innerHTML='<object width="521" height="393"><param name="movie" value="http://www.youtube.com/v/'+id+'=pt-br&rel=0&autoplay=1&border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/'+id+'&hl=pt-br&autoplay=1&border=0" type="application/x-shockwave-flash" wmode="transparent" width="521" height="393"></embed></object>';
		filme.innerHTML  ='<embed src="http://www.youtube.com/v/'+id+'&hl=pt-br&autoplay=1&border=0" type="application/x-shockwave-flash" wmode="transparent" width="521" height="393"></embed>';
	}else{
		fecharCinema2();
		abrirCinema2(id);
	}
}

function fecharCinema2(){
	if(document.getElementById("fundoCinema")!=null){
		var fundo  = document.getElementById("fundoCinema");
		fundo.removeChild(document.getElementById("filme"));
		fundo.removeChild(document.getElementById("cinema"));
		document.getElementById("load").removeChild(fundo);
	}
}

function abrirVideo(params){
	var vetor = params.split(",");
	id  = vetor[0];
	swf = vetor[1];
	if(document.getElementById("fundoCinema")==null){
		var div    = document.getElementById("load");
		
		var fundo  = document.createElement("div"); 
		fundo.id  = "fundoCinema";
		fundo.style.width  = div.style.width;
		fundo.style.height = div.style.height;
		fundo.innerHTML="<div id='cinema'></div>";
		div.appendChild(fundo);

		var m = new Swf();
		m.setDiv("cinema");
		m.setAltura("100%");
		m.setLargura("100%");
		m.setSwf("http://static1.cosmopax.com/cosmopax/swf/"+swf);
		m.gerar();
		
		var filme = document.createElement("div"); 
		filme.id  = "filme";
		fundo.appendChild(filme);
		filme.innerHTML  ='<embed src="http://www.youtube.com/v/'+id+'&hl=pt-br&autoplay=1&border=0" type="application/x-shockwave-flash" wmode="transparent" width="521" height="393"></embed>';
	}else{
		fecharVideo();
		abrirVideo(params);
	}
}

function fecharVideo(){
	if(document.getElementById("fundoCinema")!=null){
		var fundo  = document.getElementById("fundoCinema");
		fundo.removeChild(document.getElementById("filme"));
		fundo.removeChild(document.getElementById("cinema"));
		document.getElementById("load").removeChild(fundo);
	}
}