

// break out of frames

      if (top.location != location) top.location.href = location.href; 



// pop ups

      function gallery(MyPage, MyID, MyResize) {
         WinWide = 400 ;
         WinTall = 340 ;
         PosLeft = screen.availWidth /2 - WinWide /2  ;
         PosTop = screen.availHeight /2 - WinTall /2  ;
         aWin = window.open('gallery.cgi?page=' + MyPage + '&id=' + MyID + '&resize=' + MyResize,
                            'MyWin1',
                            'scrollbars=yes,resizable=yes,status=no,left=' + PosLeft + ',top=' + PosTop + ',width=' + WinWide + ',height=' + WinTall);
         aWin.focus();
      }



// EOF




