function AmpliarFoto(imagen, ancho_0, alto_0){
  margen=4;
  ancho=ancho_0+2*margen;
  alto=alto_0+2*margen;
  izquierda=(screen.width-ancho)/2;
  arriba=(screen.height-alto)/2;
  opciones="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+izquierda+",top="+arriba+"";
  fin=window.open(imagen,"",opciones);
}
