﻿function Show_Pics(carpeta, nom_serie, inicio, fin) {
    document.write('<table style = "width:100%; margin-bottom:1%;">');
    var h = 0;
    for (var i = inicio; i <= fin; i++) {
        var Codigo_href = ""
        Codigo_href = '<a  href="javascript:abre_window(\'' + carpeta + '/' + nom_serie;
        var Codigo_Img = ""
        Codigo_Img = '<img src="http://www.andreajuan.net/fotos/' + carpeta + '/' + 'th_' + nom_serie;
        var Nom_Link = ""
        var item = ""
        if (i < 10)
            item = '0' + String(i);
        else
            item = String(i);
        Codigo_href = Codigo_href + item + '.jpg\')">';
        Codigo_Img = Codigo_Img + item + '.jpg" class="th_prycto" alt="" /></a>';
        h++;
        if (h == 0) document.write('<tr>');
        document.write('<td>');
        document.write(Codigo_href + Codigo_Img);
        document.write('</td>');
        if (h == 4) {
            document.write('</tr>');
            h = 0;
        }
        else {
            if (i == fin) document.write('</tr>');
        }
    }
    document.write('</table>');
}
function abre_window(nom_foto) {
    dir_fotos = 'http://www.andreajuan.net/fotos'
    //ventana_foto = (window.open(dir_fotos + nom_foto, '_blank', 'height=700,width=640,status=yes,toolbar=no,menubar=no,location=no'));
    ventana_foto = (window.open('http://www.andreajuan.net/imagen.aspx?imagen=' + nom_foto, '_blank', 'height = 768,width = 1024, top = 0, left = 0,status=yes,toolbar=no,menubar=no,location=no'))            
}