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

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

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

function alteraValue(id,valor){
    if (valor == id.value) id.value = "";
       else if (id.value == '') id.value = valor;
}

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";
}

