How to . . .

REMOVE AN ALBUM (or a Collection)

1. Delete the folder with the same name as the Album or Collection you wish
   to delete.

2. In the folder in which the deleted folder lived, there is an albums.php
   file or, if there isn't, open the index.php file in that folder into a text
   editor such as Notepad.

3. In the file, a short way down, is an array something like this:

   $sections = array(
   "Aircraft",
   "BACCES",
   "BEA_Football_Teams",
   "Cabin_Crew_in_uniform",
   "Cabin_Crew_not_in_uniform",
   "Crew_Reporting__Tristar_House",
   "Heathrow",
   "Miscellaneous",
   "Posters",
   "Training_Courses",
   "Uniforms");

    Delete the line which corresponds to the folder you have just deleted.
    and make sure the last entry ends "like_this"); so if, say, you delete the
    Collection 'Uniforms', the new array declaration would look like this:

   $sections = array(
   "Aircraft",
   "BACCES",
   "BEA_Football_Teams",
   "Cabin_Crew_in_uniform",
   "Cabin_Crew_not_in_uniform",
   "Crew_Reporting__Tristar_House",
   "Heathrow",
   "Miscellaneous",
   "Posters",
   "Training_Courses");

    Save the file back to the site and the change should be immediate.