﻿/*Onload para todos navegadores*/
window.onload = function() {
    RetraiBarra();
    CallBanner('2');
}

//--------Função para localizar flash na página
function getFlashMovieObject(movieName)
{
    if (window.document[movieName])
    {
        return window.document[movieName];
    }
    if (navigator.appName.indexOf("Microsoft Internet")==-1)
    {
        if (document.embeds && document.embeds[movieName])
            return document.embeds[movieName];
    }
    else 
    {
        return document.getElementById(movieName);
    }
} 

function CallBanner(valor) {

    if (valor == '1') {
        var banner = document.getElementById('CallBanner');
        if (banner != null) {
            banner.style.height = '360px';
          
        }
    }
    if (valor == '2') {
        var banner = document.getElementById('CallBanner');
        if (banner != null) {
            banner.style.height = '90px';
          
        }
    }
}

/*DHTML */
function fechar() {
    
        var obj = document.getElementById('ctl00_div_dhtml_home');
        if (obj.style.visibility == 'hidden') {
            obj.style.visibility = 'visible';
            obj.style.width = 'auto';
            obj.style.height = 'auto';
        }
        else {
            obj.style.visibility = 'hidden';
            obj.style.overflow = 'hidden';
            obj.style.width = '1px';
            obj.style.height = '1px';
            obj.style.bottom = '1px';
            obj.style.right = '1px';
			obj.style.display = 'none'
        }
        document.getElementById('master_topo').style.zIndex = 5;
}
/*DHTML */

/*INTERVENÇÃO*/
function fechaIntervencao() {

    var obj = document.getElementById('ctl00_pnlIntervencao');
    if (obj.style.visibility == 'hidden') {
        obj.style.visibility = 'visible';
        obj.style.width = 'auto';
        obj.style.height = 'auto';
    }
    else {
        obj.style.visibility = 'hidden';
        obj.style.overflow = 'hidden';
        obj.style.width = '1px';
        obj.style.height = '1px';
        obj.style.bottom = '1px';
        obj.style.right = '1px';
        obj.style.display = 'none'
    }

    document.getElementById('Master').style.Position = 'inherit';
    document.getElementById('Master').style.zIndex = '1';
    document.getElementById('Intervencao').style.zIndex = '0';
    document.getElementById('Intervencao').style.display = 'none';
}
/*INTERVENÇÃO*/


/*BARRA EXPANSÍVEL*/
function ExpandeBarra() {
    document.getElementById('barra_exp').style.height = '260px'
    document.getElementById('ctl00_div_dhtml_home').style.marginTop = '30px'
}
function RetraiBarra() {
    //document.getElementById('barra_exp').style.height = '30px'
    document.getElementById('barra_exp').style.height = '60px'
    //document.getElementById('ctl00_div_dhtml_home').style.marginTop = '30px'
}
/*Fim BARRA EXPANSÍVEL*/

/*RASGA PÁGINA*/
function abreRasga() {
    document.getElementById('rasgaPagina').style.visibility = 'visible';
    document.getElementById('rasgaPagina').style.display = 'block';
    document.getElementById('ctl00_div_dhtml_home').style.display = 'none';
	
    document.getElementById('master_topo').style.zIndex = 0;
    CallBanner('2');
    setTimeout(play, 100);
    
}

function play() {
    var flash = getFlashMovieObject('rasgaSWF');
    
    if(flash!=null)
    {
        flash.Play();
        document.getElementById('master_topo').style.zIndex = 0;
        document.getElementById('orelha').style.display = 'none';
    }
    else
    {
        alert('ERR')
    }
}
    
function fechaRasga() {
    document.getElementById('rasgaPagina').style.visibility = 'hidden';
    document.getElementById('rasgaPagina').style.display = 'none';
    document.getElementById('master_topo').style.zIndex = 4;
    document.getElementById('ctl00_div_dhtml_home').style.display = 'block';
    document.getElementById('orelha').style.display = 'block';
}
/*RASGA PÁGINA*/


/*ROUBA PÁGINA*/
function abreRouba(){

	document.getElementById('rouba').style.visibility = 'visible';
	document.getElementById('rouba').style.display = 'block';
	fechar();
	getFlashMovieObject('roubaSWF').style.visibility = 'visible';
	getFlashMovieObject('roubaSWF').style.display = 'block';
	setTimeout(playRouba, 100);
	
}

function playRouba(){
	
	document.getElementById('master_Rouba').style.zIndex = 6;    
	var flash = getFlashMovieObject('roubaSWF');
    
        if(flash!=null)
        {
            flash.Play();
            document.getElementById('Master').style.zIndex = 0;
            document.getElementById('master_Rouba').style.zIndex = 5; 
        }
        else
        {
            alert('ERR')
        }
	
	}
	
function start(){
    fechaRouba() ;
} 

function fechaRouba() {
        var obj = document.getElementById('rouba');
        if (obj.style.visibility == 'hidden') {
            obj.style.visibility = 'visible';
            obj.style.width = 'auto';
            obj.style.height = 'auto';
        }
        else {
            obj.style.visibility = 'hidden';
            obj.style.overflow = 'hidden';
            obj.style.width = '1px';
            obj.style.height = '1px';
            obj.style.bottom = '1px';
            obj.style.right = '1px';
		    obj.style.display = 'none'
            document.getElementById('master_Rouba').style.zIndex = 0; 
        } 
        document.getElementById('master_Rouba').style.zIndex = 0; 
        document.getElementById('master_topo').style.zIndex = 5;
}

/*ROUBA PÁGINA*/

