function paginacao(vinicio){
	formulario = document.forms[0];
	formulario.inicio.value = vinicio;
	setCarregando();
	// jan = window.open('novaJan',''); jan.document.open(); jan.document.write(get(formulario)); jan.document.close();
	post_ajax(document.getElementById('conteudoCentral'), App.BaseURL+'bf/bf_ajax.php', formulario,'setTamanhoCentro();setPosicaoScroll();');
}

function paginacao_admin(vinicio){
	formulario = document.formPaginacao;
	formulario.inicio.value = vinicio;
	setCarregando();
	// jan = window.open('novaJan',''); jan.document.open(); jan.document.write(get(formulario)); jan.document.close();
	post_ajax(document.getElementById('conteudoCentral'), App.BaseURL+'/admin/bf/bf_ajax.php', formulario,'setTamanhoCentroAtendimento();');//setPosicaoScroll();
}

function paginacao_atendimento(vinicio){
	formulario = document.formPaginacaoatendimento;
	formulario.inicio_atendimento.value = vinicio;
	setCarregandoAtendimento();
	// jan = window.open('novaJan',''); jan.document.open(); jan.document.write(get(formulario)); jan.document.close();
	post_ajax(document.getElementById('conteudoCentral'), App.BaseURL+'/admin/bf/bf_ajax_atendimento.php', formulario,'setTamanhoCentroAtendimento()');
}

function setTamanhoCentroAtendimento(){
	/*
	jan = window.open('','janela');
	jan.document.write(obj.innerHTML);
	jan.document.close();
	*/
	obj=document.getElementById('conteudoCentral');
	// tam=obj.offsetHeight;
	tam=$('#conteudoCentral').height();
	tam = document.body.scrollHeight;
	// parent.document.getElementById('ifrConteudo').height=tam;
	parent.$('#ifrConteudo').height(tam);
	nom=navigator.appName;
	if(nom=='Netscape' && tam>32860){
		document.body.style.overflow='';
	}else{
		document.body.style.overflow='';
	}
	document.body.scrollTop=0;
	document.body.style.zindex=1000;
}

