How do I allow an unauthenticated user to access more IPCOP web interface pages?

      <Directory /home/httpd/cgi-bin>  
          AllowOverride None  
          Options None  
          AuthName "Restricted"  
          AuthType Basic  
          AuthUserFile /var/ipcop/auth/users  
          Require user admin  
          <Files index.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
          <Files credits.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
          <Files dial.cgi>  
              Require user admin dial  
          </Files>  
      </Directory>

and change it to be

      <Directory /home/httpd/cgi-bin>  
          AllowOverride None  
          Options None  
          AuthName "Restricted"  
          AuthType Basic  
          AuthUserFile /var/ipcop/auth/users  
          Require user admin  
          <Files index.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
          <Files credits.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
          <Files dial.cgi>  
              Require user admin dial  
          </Files>  
          <Files XYZ.cgi>  
              Satisfy Any  
              Allow from All  
          </Files>  
      </Directory>

where XYZ is the page you want to allow access. If you want to add multiple pages, use multiple blocks.