var sinopse = new Image();
sinopse.src = 'images/tit_sinopse.gif';
var sinopse_on = new Image();
sinopse_on.src = 'images/tit_sinopse_on.gif';

var ficha = new Image();
ficha.src = 'images/tit_fichatecnica.gif';
var ficha_on = new Image();
ficha_on.src = 'images/tit_fichatecnica_on.gif';

function mostraTexto(strLayer){
	
	var ly, lyS, lyF;
	ly  = getLayer("txtTexto");
	lyS = getLayer("txtSinopse");
	lyF = getLayer("txtFicha");

	if(strLayer == 'sinopse'){ 
		if(ly && lyS){
			ly.innerHTML = lyS.innerHTML;
		}
		if(document.images){
			document.images['sinopse'].src = sinopse_on.src;
			document.images['ficha'].src = ficha.src;
		}
	}
	else{ // ficha 
		if(ly && lyF){
			ly.innerHTML = lyF.innerHTML;
		}
		if(document.images){ 
			document.images['sinopse'].src = sinopse.src;
			document.images['ficha'].src = ficha_on.src;
		}
	}
	initScrollLayers();
	
}

function initScrollLayers(){
	  
	var wndo_1 = new dw_scrollObj('wn', 'txtTexto', null);
	
	wndo_1.setUpScrollbar("dragBar", "track", "v", 1, 1);
	dw_scrollObj.GeckoTableBugFix('wn'); 

}

function initScrollFoto(){

	var lyFoto = getLayer("fotos");
	
	if(lyFoto){
		var wndoFoto = new dw_scrollObj('wnF', 'lyrF', 'tblFoto');
		dw_scrollObj.GeckoTableBugFix('wnF'); 
	}

}

function trailerBaixa(){
	
	if(flash_baixa != ""){
		var strFlash = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="325" HEIGHT="215" id="trailerBaixa" ALIGN="center">';
		strFlash += '<PARAM NAME=movie VALUE="trailers/' + flash_baixa + '">';
		strFlash += '   <PARAM NAME=quality VALUE=high>';
		strFlash += '   <PARAM NAME=wmode VALUE=transparent>';
		strFlash += '   <PARAM NAME=bgcolor VALUE=#FFFFFF>';
		strFlash += '   <EMBED src="trailers/' + flash_baixa + '" quality="high" wmode="transparent" bgcolor="#FFFFFF"  WIDTH="325" HEIGHT="215" NAME="trailerBaixa" ALIGN="center" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>';
        strFlash += '</OBJECT>';
		
		setInnerHTML("lyTrailer", strFlash);
		
	}
	
}

var jTrailerAlta;
function trailerAlta(){
	
	var strURL = 'filmeTrailer.php?t=' + escape(flash_alta);
	if(flash_alta != ""){
		if(jTrailerAlta && !jTrailerAlta.closed){
			jTrailerAlta.location.href = strURL;
		}
		else{
			jTrailerAlta = novaJanela(strURL, 'wTrailer', 480, 285, 'no', 'no', 'no');
		}
		jTrailerAlta.focus();
	}
	
}

function mudarPagina(strValue){
	
	if(strValue != ""){
		location.href = "filme.php?c="+strValue;
	}
	
}