function fotoZoom(foto, legenda){
 window.scroll(0, 0);	
 altura = window.document.body.clientHeight;
 altura = altura + "px";
 document.getElementById("bodyMalha").style.height = altura;
 document.getElementById("bodyMalha").style.visibility = 'visible';	
 document.getElementById("Moldura").innerHTML = '<img id="imagemMoldura" src="'+foto+'" alt="'+foto+'" /><p>'+legenda+'</p><a href ="javascript:fotoClose();" title="fechar"><img src="imagens/design/btn_fechar.png" alt="fechar" />  FECHAR</a>';
 largura = document.getElementById("imagemMoldura").width;
 largura = largura + "px";
 document.getElementById("Moldura").style.width = largura;
 largura = document.getElementById("imagemMoldura").style.visibility = 'visible';
}

function fotoClose(){
 document.getElementById("Moldura").innerHTML = '';	
 document.getElementById("bodyMalha").style.visibility = 'hidden';	
}