function abreFoto2(nombre, lat, inalt){
	var ima = new Image;
	ima.src = nombre;
	var ancho = ima.width + 20;
	var alto = ima.height + 20;
	props = 'width=' + lat + ',height=' + inalt + ',scrollbars=yes,resizable=no';
	window.open(nombre,'',props)
}