function abrirImg(name, foto){
	var newWindow = window.open("vacio.html",name,"width=644,height=484,scrollbars=0,status=0");
	var ServerURL = self.location.href;
	var Position = ServerURL.indexOf("index");
	var Actual_Server = ServerURL.substring(Position,ServerURL);
	newWindow.location=Actual_Server+"foto.asp?id="+foto
	newWindow.focus()
	return false;
}

