function MostrarFoto(cual,tamanio,path,alto,ancho,left){
 if (left==null) { left=0; }
 if (tamanio==1) {
  if (alto==null) { 
  alto=375;
  }
  if (ancho==null) { ancho=500; }
  topx=100;
 } else {
  if (alto==null) { 
  alto=500; 
  }
  if (ancho==null) { ancho=375; }
  topx=25;
 }
 if (path==null) {
  path='album/fotos/';
 }
 window.open('mostrar.php?foto='+path+cual,'',"toolbar=no,scrollbars=no,width="+ ancho +",height="+ alto +",top="+ topx +",left="+ left +"");
}
