I finally got around to adding this feature. It allows me to link to a display of other contents at a storage location listed in the details of an object.To get it to work I had to remove the definitions of Access and Source_Id from the storage_locations.php model definition (the fields really are not in the database anyways)and add the following to the ca_objects_default_html.php at the point where I want to show the storage location (right after the Identifier line as it happens).The code I added was the following <?php $va_storagelocations = $t_object->get("ca_storage_locations", array("returnAsArray" => 1)); if(sizeof($va_storagelocations) > 0){ print "<div class='unit'><H6>Storage Location:</H6>"; foreach($va_storagelocations as $va_storagelocation) { print "<div>".caNavLink($this->request, $va_storagelocation['label'], '', 'Browse', 'objects', 'facet/location_facet', array('id' => $va_storagelocation['location_id']))."</div>"; print "</div><!-- end unit -->"; } }?>That allows me to take advantage of an existing facet and uses the Browse feature to produce a page of images linking to objects that are related through storage location.CheersGordb