
NAME :: clear_guest_access

SYNTAX :: clear_guest_access(string target);

This functions is provided inside of the WORKROOM inherit so that
a target can be removed from the "guest" level of access. If no target
is passed then the whole list will be wiped out.

   ----< SAMPLES >----

clear_guest_access("larry");
       This will remove larry from the guest access list.

clear_guest_access();
        This removes the entire guest access list.

