﻿var tempo;

function resize(valor){
	
	var altura = document.documentElement.clientHeight;
	
	
	if(valor<=altura){
		document.getElementById('site').style.height = "100%";
		//document.getElementById('flash').style.height = "100%";
	}else{
		document.getElementById('site').style.height = valor+"px";
		//document.getElementById('flash').style.height = valor+"px";
		
	}
	
}


function popUp(pagina)
{
	
	window.open (pagina, "janela","menubar=0,resizable=0,width=700,height=580, scrollbars=1");

}


function setFocus(){
	
	var fla = self.document.getElementById("site");
	
	if(fla) fla.focus();
	else {
		
		tempo = setInterval( function(){
			
			clearInterval( tempo );
			load();
			
		}, 500 );
		
	}
	
}


function load(){
	setFocus();
	
}

window.onload = load;