// JavaScript Document
function abre() {
 if (document.all) {
  esquerda = (document.body.clientWidth / 2) - 250;   //metade da largura do swf
  document.all.oferta.style.left = esquerda;
 }
 if (document.layers) {
  esquerda = (window.innerWidth / 2) - 250;   // metade da largura do swf
  document.oferta.left=esquerda;
 }
 if (document.getElementById) {
  esquerda = (document.body.clientWidth / 2) - 250;   // metade da largura do swf
  document.getElementById("oferta").style.left = esquerda;
 }
 
 onresize = function() {
  abre();
 }
 tempo = setTimeout("fecha()", 20000);
}

function fecha() {
 clearTimeout(tempo);
 
 if (document.layers) {
  document.oferta.visibility = "hidden";
 }
 if (document.all) {
  document.all.oferta.style.visibility = "hidden";
 }
 if (document.getElementById) {
  document.getElementById("oferta").style.visibility = "hidden";
 }
}
function flyBanners(banner){
	document.write('<div id="oferta" style="position:absolute;width:500px;height:300px;elevation:higher;top:190px; z-index:100;">');
	document.write('<embed src="'+banner+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="300" wmode="transparent"></embed>');
	document.write('</div>');
	abre();
}