﻿  /* function MostrarFoto(ruta)
    {
      if (window.showModalDialog) {  
        var caracteristicas = "dialogTop=100px;dialogLeft=100px;dialogWidth=700px;" +
        "dialogHeight=500px;center=yes;help=no;font-family:Arial;";
        window.showModalDialog('foto.html', ruta, caracteristicas);
      }
      else
      {        
        var caracteristicas = "height=520, width=700, toolbar=0, directories=0," +   
        "status=0, linemenubar=0, modal=yes, left=100, top=100, dialog=yes,";
        NuevaVentana = window.open('foto.html?foto='+ruta,'modal',caracteristicas);
        NuevaVentana.moveTo(100,100);
        NuevaVentana.focus();
        
      }
    }
*/
   function MostrarFoto(ruta,texto)
    {
  
    atr=new Array();
    atr[0]=ruta;
    atr[1]=texto;

      if (window.showModalDialog) {  
        var caracteristicas = "dialogTop=100px;dialogLeft=100px;dialogWidth=700px;" +
        "dialogHeight=500px;center=yes;help=no;font-family:Arial;";
        window.showModalDialog('foto.aspx', atr, caracteristicas);
      }
      else
      {        
        var caracteristicas = "height=520, width=700, toolbar=0, directories=0," +   
        "status=0, linemenubar=0, modal=yes, left=100, top=100, dialog=yes,";
        NuevaVentana = window.open('foto.aspx?foto='+ruta+'&texto'+texto,'modal',caracteristicas);
        NuevaVentana.moveTo(100,100);
        NuevaVentana.focus();
        
      }
    }
   function MostrarFotoLarga(ruta,texto)
    {
  
    atr=new Array();
    atr[0]=ruta;
    atr[1]=texto;

      if (window.showModalDialog) {  
        var caracteristicas = "dialogTop=100px;dialogLeft=100px;dialogWidth=500px;" +
        "dialogHeight=700px;center=yes;help=no;font-family:Arial;";
        window.showModalDialog('fotoLarga.aspx', atr, caracteristicas);
      }
      else
      {        
        var caracteristicas = "height=600, width=520, toolbar=0, directories=0," +   
        "status=0, linemenubar=0, modal=yes, left=100, top=100, dialog=yes,";
        NuevaVentana = window.open('fotoLarga.aspx?foto='+ruta+'&texto'+texto,'modal',caracteristicas);
        NuevaVentana.moveTo(100,100);
        NuevaVentana.focus();
        
      }
    }
   function MostrarFotoAncha(ruta,texto)
    {
  
    atr=new Array();
    atr[0]=ruta;
    atr[1]=texto;

      if (window.showModalDialog) {  
        var caracteristicas = "dialogTop=100px;dialogLeft=100px;dialogWidth=850px;" +
        "dialogHeight=300px;center=yes;help=no;font-family:Arial;";
        window.showModalDialog('fotoAncha.aspx', atr, caracteristicas);
      }
      else
      {        
        var caracteristicas = "height=850, width=300, toolbar=0, directories=0," +   
        "status=0, linemenubar=0, modal=yes, left=100, top=100, dialog=yes,";
        NuevaVentana = window.open('fotoAncha.aspx?foto='+ruta+'&texto'+texto,'modal',caracteristicas);
        NuevaVentana.moveTo(100,100);
        NuevaVentana.focus();
        
      }
    }
