function alterar_foto(caminho,larg,alt){ //altera as fotos na galeria dos produtos
    document.getElementById('fotoAmpliada').src = caminho;
	document.getElementById('fotoAmpliada').width = larg;
	document.getElementById('fotoAmpliada').height = alt;
}

function atendimento(url){
    window.open(url,"Atendimento","width=505,height=515");
}

function abreVideo(){
    window.open("video.php","Vídeo","width=500,height=405");
}

function fecharBanner(idBanner){
    document.getElementById(idBanner).style.visibility="hidden";
}

function preencheEndereco(endereco,cidade,estado,bairro){
   // alert(dados);
    document.getElementById('endereco').value=endereco;
    document.getElementById('cidade').value=cidade;
    document.getElementById('estado').value=estado;
    document.getElementById('bairro').value=bairro;

    document.getElementById('carregando').style.visibility="hidden";
}

