var tempo;function resize(width, height){		var largura = document.documentElement.clientWidth;	var altura 	= document.documentElement.clientHeight;			if(width<=largura){		document.getElementById('site').style.width = "100%";	}else{		document.getElementById('site').style.width = width+"px";	}		if(height<=altura){		document.getElementById('site').style.height = "100%";	}else{		document.getElementById('site').style.height = height+"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;
