<!--firsttime = true;pics = new Array("theboys.htm", "3amigos.htm", "amigos.htm", "cohlercl.htm", "action.htm", "break.htm", "chillin.htm",                     "cuba.htm", "friends.htm", "goodtimes.htm", "hangin.htm", "jammin.htm", "jmanddm.htm",                      "jongirls.htm", "kdandxw.htm", "lesson.htm", "mastercl.htm", "newtoys.htm", "nightout.htm",                     "pals.htm", "pianists.htm", "pointer.htm", "quintet.htm", "rehearsal.htm", "ricatwork.htm",                     "ricetal1.htm", "ricetal2.htm", "surprise!.htm", "willellen.htm", "breaktime.htm");piclist = new String(pics[0]);for (n=1; n<pics.length; n++) {   piclist += ","+pics[n];   } function findindex(picname) {var i;// find index number of this picturefor (i=0; i<pics.length; i++) {   if (pics[i]==picname) break;   }if (i==pics.length) i=0;return i;}function openViewer(picname) {if (firsttime) {   document.gallery.allpics.value=piclist;   newWin = open('../viewer.htm','viewer','location=no,resizable=no,scrollbars=no,status=no,dependent=yes,toolbar=no,height=685,width=800');   firsttime = false;   }else if (newWin.closed) {   newWin = open('../viewer.htm','viewer','location=no,resizable=no,scrollbars=no,status=no,dependent=yes,toolbar=no,height=685,width=720');   }else {   newWin.frames['pictures'].location.href = picname;   newWin.frames['controls'].document.vcontrol.pnum.value = findindex(picname);   }document.gallery.picname.value = picname;newWin.focus();}//-->