function ShowPic (id,close)
{
 var name, width, height, url;
 var picinfo=new Array ('pic010001',600,400,
                        'pic010002',600,400,
                        'pic010003',600,400,
                        'pic010004',600,400,
                        'pic010005',600,400,
                        'pic010006',600,400,
                        'pic010007',600,400,
                        'pic010008',600,400,
                        'pic010009',600,400,
                        'pic010010',600,400,
                        'pic010011',600,400,
                        'pic010012',600,400,
                        'pic010014',600,400,
                        'pic010015',600,400,
                        'pic010016',600,400,
                        'pic010017',600,400,
                        'pic010018',600,400,
                        'pic010019',600,400,
                        'pic010020',600,400,
                        'pic010021',600,400,
                        'pic010022',600,400,
                        'pic010023',600,400,
                        'pic010024',600,400,
                        'pic010025',600,400,
                        'pic010026',600,400,
                        'pic010027',600,400,
                        'pic010028',600,400,
                        'pic010029',600,400,
                        'pic010030',600,400,
                        'pic010031',600,400,
                        'pic010032',600,400);
 if (id<0)
    id=30;
 if (id>30)
    id=0;
 name=picinfo [id*3];
 width=picinfo [id*3+1];
 height=picinfo [id*3+2];
 url='/cgi-bin/showpic.pl?'+
     'name='+name+'.jpg&'+
     'width='+width+'&'+
     'height='+height+'&'+
     'id='+id+'&'+
     'script=pics01.js',
 window.open (url,name,
              'toolbar=no,location=no,status=no,'+
              'menubar=no,scrollbars=no,resizable=no,'+
              'left=100,top=100,'+
              'width='+width+','+
              'height='+height);
 if (close)
    window.close ();
 return;
}
