
var $URL = "http://www.vidrocor.com.br/";
var $URLIMAGES = "http://www.vidrocor.com.br/img/";
var $DIVISOR = "%^%";

function verificarAjax(codigo) {
	alert("ajax");
}

function escreveConteudo(texto,destino) {
	
		var retorno = texto.split($DIVISOR);
	
		document.getElementById(destino).innerHTML = retorno[0];
		
		if (retorno.length > 1) {
			verificarAjax(retorno[1]);
		}
}


function CarregarLancamentosGeral(arquivo,destino) {
	
	if (arquivo != "") {
	
		// busca o arquivo
		executaAjax($URL + arquivo,destino,'conteudo');
		
	}
	
}

function CarregarLancamentos(tipo,destino) {
	
	document.getElementById(destino).innerHTML = '<p style="padding-top:50px;"><div align="center"><img src="img/carregando.gif" width="100" height="100"></div><br></p>';	
	CarregarLancamentosGeral('lancamento'+ tipo +'.asp',destino);
	
}