function muda_imagem(id, endereco) {
	document.getElementById('foto_g').src = 'phpthumb/phpThumb.php?src='+endereco+'&w=284&h=279';
	document.getElementById('foto_g').onclick = function() {
		AbreJanela(id);	
	}
}
function AbreJanela(id) {
	window.open('/visualizar_foto.php?'+id, "", "status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no, width=760, height=600");
}