

function WriteFlash(movie, width, height)
{
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + width + '" height="' + height + '" id="destaques" align="middle" VIEWASTEXT>\n');
    document.write('<param name="movie" value="' + movie + '" />\n');
    document.write('<param name="quality" value="high" />\n');
    document.write('<param name="wmode" value="transparent" />\n');
    document.write('<embed wmode="transparent" src="' + movie + '" quality="high" bgcolor="#ffffff" width="' + width + '" height="' + height + '" name="destaques" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed>\n');
    document.write('</object>\n');
}

function WriteFlashWithVars(movie, width, height, vars)
{
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + width + '" height="' + height + '" id="destaques" align="middle" VIEWASTEXT>\n');
    document.write('<param name="movie" value="' + movie + '" />\n');
    document.write('<param name="quality" value="high" />\n');
    document.write('<param name="wmode" value="transparent" />\n');
    document.write('<param name="FlashVars" VALUE="' + vars + '">\n');
    document.write('<embed FlashVars="' + vars + '" wmode="transparent" src="' + movie + '" quality="high" bgcolor="#ffffff" width="' + width + '" height="' + height + '" name="destaques" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed>\n');
    document.write('</object>\n');
}

function cleanbx(id, str)
{
    var quant = document.getElementById(id);
    if (quant.value == str) {            
	quant.value = "";  
    }
}

function fillbx(id, str)
{
    var quant = document.getElementById(id);
    if(quant.value == "") {
	quant.value = str;
    }
}

function gotoCinema(obj)
{
    var idx = obj.options[obj.selectedIndex].value;
    if(idx > 0)
    {
	window.location = "/cartaz/index/id/" + idx;
    }
}

function domRollover() {
    if (navigator.userAgent.match(/Opera (\S+)/)) {
	var operaVersion = parseInt(navigator.userAgent.match(/Opera (\S+)/)[1]);
    }
    if (!document.getElementById||operaVersion <7) return;
    var imgarr=document.getElementsByTagName('img');
    var imgPreload=new Array();
    var imgSrc=new Array();
    var imgClass=new Array();
    for (i=0;i<imgarr.length;i++){
	if (imgarr[i].className.indexOf('domroll')!=-1){
	    imgSrc[i]=imgarr[i].getAttribute('src');
	    imgClass[i]=imgarr[i].className;
	    imgPreload[i]=new Image();
	    if (imgClass[i].match(/domroll (\S+)/)) {
		imgPreload[i].src = imgClass[i].match(/domroll (\S+)/)[1]
		    }
	    imgarr[i].setAttribute('xsrc', imgSrc[i]);
	    imgarr[i].onmouseover=function(){
		this.setAttribute('src',this.className.match(/domroll (\S+)/)[1])
	    }
	    imgarr[i].onmouseout=function(){
		this.setAttribute('src',this.getAttribute('xsrc'))
	    }
	}
    }
}

var ns = (navigator.appName.indexOf("Netscape") != -1);
var d = document;
var px = document.layers ? "" : "px";
function JSFX_FloatDiv(id, sx, sy)
{
    var el=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
    window[id + "_obj"] = el;
    if(d.layers)el.style=el;
    el.cx = el.sx = sx;el.cy = el.sy = sy;
    el.sP=function(x,y){this.style.left=x+px;this.style.top=y+px;};
    el.flt=function()
    {
	var pX, pY;
	pX = (this.sx >= 0) ? 0 : ns ? innerWidth : 
	document.documentElement && document.documentElement.clientWidth ? 
	document.documentElement.clientWidth : document.body.clientWidth;
	pY = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? 
	document.documentElement.scrollTop : document.body.scrollTop;
	if(this.sy<0) 
	    pY += ns ? innerHeight : document.documentElement && document.documentElement.clientHeight ? 
		document.documentElement.clientHeight : document.body.clientHeight;
	this.cx += (pX + this.sx - this.cx)/8;this.cy += (pY + this.sy - this.cy)/8;
	this.sP(this.cx, this.cy);
	setTimeout(this.id + "_obj.flt()", 40);
    }
    return el;
}

function show_hide(id) {
    if (id == 'trailer') {
	show_hide('x_button');
    }
    
    if (document.getElementById(id).style.display == 'none') {
	document.getElementById(id).style.display = 'block';
    }
    else if (document.getElementById(id).style.display == 'block') {
	document.getElementById(id).style.display = 'none';
    }
}

function chkDestaques()
{
    var destaque = document.getElementById('filmes_destaque');
    var destaque_newsletter = document.getElementById('filmes_destaque_newsletter');

    if(!destaque.checked) {
	destaque_newsletter.checked = false;
	destaque_newsletter.disabled = true;
    } else {
	destaque_newsletter.disabled = false;
    }

}