imagen = '';
tituloi = '';
anchoi = '';
altoi = '';

function abrirImg(foto,ancho,alto){
	imagen=foto;
	anchoi=ancho;
	masAncho=ancho;
	altoi=alto;
	masAlto=alto+28;
	features = "width="+masAncho+",height="+masAlto;	
	var newWindow = window.open("../imagenesmaster.html",""+ancho+alto,features);
	var ServerURL = self.location.href;
	var Position = ServerURL.indexOf("index");
	var Actual_Server = ServerURL.substring(Position,ServerURL);
	newWindow.location=Actual_Server+"../imagenesmaster.html"
	newWindow.focus()
	return false
}