function ShowPic (id,close)
{
 var name, width, height, url;
 var picinfo=new Array ('pic020001',617,400,
                        'pic020002',295,400,
                        'pic020003',514,400,
                        'pic020004',606,400,
                        'pic020005',597,400,
                        'pic020006',617,400,
                        'pic020007',606,400,
                        'pic020008',614,400,
                        'pic020009',617,400,
                        'pic020010',625,400,
                        'pic020011',614,400,
                        'pic020012',617,400,
                        'pic020014',606,400,
                        'pic020015',625,400,
                        'pic020016',254,400,
                        'pic020017',264,400,
                        'pic020018',260,400,
                        'pic020019',475,400,
                        'pic020020',614,400,
                        'pic020021',446,400,
                        'pic020022',618,400,
                        'pic020023',614,400,
                        'pic020024',300,400);
 if (id<0)
    id=22;
 if (id>22)
    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=pics02.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;
}
