function mudarimg(img){
    img = document.images["imgg"].src = img;
	if(img){
	document.getElementById('mostrafoto').style.display = "block";
	document.getElementById('fotogrande').style.display = "block";
	}
}
function fechar(img){
	img = document.images["imgg"].src = 'transparente.gif';
    document.getElementById('fotogrande').style.display = "none";
	document.getElementById('mostrafoto').style.display = "none";
}