var url_cotacao_mercados_futuros = top.location.protocol + '//' +top.location.host +  '/includes/';

function carregaCotacao () {	
	if ( document.getElementById ( 'div_cotacao_home_bmf' ) && document.getElementById ( 'load_cotacao_home_bmf' ) ) {
		showDivCotacaoHome(1);
		fetchURLCotacaoHome ( url_cotacao_mercados_futuros + "mercados_futuros_home.asp");
	} else {
		if ( document.getElementById ( 'div_cotacao_bmf' ) && document.getElementById ( 'load_cotacao_bmf' ) ) {
			showDivCotacao(1);
			fetchURLCotacao ( url_cotacao_mercados_futuros + "mercados_futuros.asp");
		}
	}
	var timer = setInterval ( 'carregaCotacao()' , 900000 ) ;
}
	
function showDivCotacaoHome(id){
	if (id == 1){
		document.getElementById('div_cotacao_home_bmf').style.display = 'none';
		document.getElementById('load_cotacao_home_bmf').style.display = 'inline';		
	} else {
		document.getElementById('load_cotacao_home_bmf').style.display = 'none';
		document.getElementById('div_cotacao_home_bmf').style.display = 'inline';
	}	
}

function showDivCotacao(id){
	if (id == 1){
		document.getElementById('div_cotacao_bmf').style.display = 'none';
		document.getElementById('load_cotacao_bmf').style.display = 'inline';		
	} else {
		document.getElementById('load_cotacao_bmf').style.display = 'none';
		document.getElementById('div_cotacao_bmf').style.display = 'inline';
	}	
}

function fetchURLCotacaoHome(url) {
	try{
		xmlhttp = new XMLHttpRequest();
	}catch(ee){
		try{
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(E){
				xmlhttp = false;
			}
		}
	}

	xmlhttp.open("GET", url ,true);
	xmlhttp.onreadystatechange=function() {
    if (xmlhttp.readyState==4){
		if (xmlhttp.status == 200){	
			document.getElementById('load_cotacao_home_bmf').style.display = 'none';
			document.getElementById('div_cotacao_home_bmf').innerHTML = xmlhttp.responseText;
			showDivCotacaoHome(0);
		} else {
			document.getElementById('load_cotacao_home_bmf').innerHTML = 'Serviço temporariamente desativado.';
		}
    }
	}
	xmlhttp.send(null)
	}
function fetchURLCotacao(url) {
	try{
		xmlhttp = new XMLHttpRequest();
	}catch(ee){
		try{
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e){
			try{
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			}catch(E){
				xmlhttp = false;
			}
		}
	}
	xmlhttp.open("GET", url ,true);
	xmlhttp.onreadystatechange=function() {
    if (xmlhttp.readyState==4){
		if (xmlhttp.status == 200){	
			document.getElementById('load_cotacao_bmf').style.display = 'none';
			document.getElementById('div_cotacao_bmf').innerHTML = xmlhttp.responseText;
			showDivCotacao(0);
		} else {
			document.getElementById('load_cotacao_bmf').innerHTML = 'Serviço temporariariamente desativado.';
			
		}
    }
	}
	xmlhttp.send(null)
	}