
NAME :: clear_write_access

SYNTAX :: clear_write_access(string target);

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

   ----< SAMPLES >----

clear_write_access("larry");
       This will remove larry from the write access list.

clear_write_access();
        This removes the entire write access list.

